source: trunk/packages/vizservers/nanovis/config.h @ 3394

Last change on this file since 3394 was 3394, checked in by gah, 11 years ago

fix up stats reporting in servers

  • Property svn:eol-style set to native
File size: 1.8 KB
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * ----------------------------------------------------------------------
4 * Nanovis: Visualization of Nanoelectronics Data
5 *
6 * ======================================================================
7 *  AUTHOR:  Wei Qiao <qiaow@purdue.edu>
8 *           Purdue Rendering and Perceptualization Lab (PURPL)
9 *
10 *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
11 *
12 *  See the file "license.terms" for information on usage and
13 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
14 * ======================================================================
15 */
16
17#ifndef CONFIG_H__
18#define CONFIG_H__
19
20/*
21 * GeForce 6 series and above cards support non-power-of-two texture
22 * dimensions.  If using a 5 series card, disable this define
23 */
24#define HAVE_NPOT_TEXTURES
25
26/*
27 * GeForce 6 series and above cards support 16- or 32-bit float filtering
28 * and blending.  If using a 5 series card, disable this define
29 */
30#define HAVE_FLOAT_TEXTURES
31
32/*
33 * GeForce 8 series cards support 32-bit float filtering and blending.
34 * If using a 6 or 7 series card, enable this define to use 16-bit float
35 * textures and blending
36 */
37#define USE_HALF_FLOAT
38
39/*
40 * Enable render server
41 */
42#define XINETD
43
44/*
45 * Enable event logging
46 */
47//#define EVENTLOG
48
49/*
50 * Do run length compression
51 */
52//#define DO_RLE
53
54/*
55 * Keep statistics
56 */
57#define KEEPSTATS
58
59/*
60 * Controls if debug trace logging is enabled
61 */
62//#define WANT_TRACE
63
64/*
65 * Controls whether DX data is downsampled.
66 */
67//#define DOWNSAMPLE_DATA
68
69/*
70 * Determines if Sobel filter is applied to gradients when loading a
71 * volume
72 */
73#define FILTER_GRADIENTS
74
75/*
76 * Controls whether the plane* commands are registered in the
77 * interpreter. [Are these commands still required?]
78 */
79//#define PLANE_CMD
80
81#endif
Note: See TracBrowser for help on using the repository browser.