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

Last change on this file since 2837 was 2836, checked in by ldelgass, 12 years ago

More cleanups, remove NEW_FLOW_ENGINE define flag

  • Property svn:eol-style set to native
File size: 2.0 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-2006  Purdue Research Foundation
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#define NV40                            /* Uncomment if using 6 series
21                                         * card. By default we assume older
22                                         * card the 5xxx series */
23#define XINETD                          /* Enable render server. */
24//#define EVENTLOG                      /* Enable event logging. */
25//#define DO_RLE                        /* Do run length compression. */
26
27/*
28 * The following define controls whether new prototype features are to be
29 * compiled.  Right now by default it's off (0). That's because nanovis
30 * releases are built directly from the subversion repository.  So for now,
31 * we'll rely on developers to set this in their respective sandboxes.
32 */
33#define PROTOTYPE               0
34
35//#define USE_POINTSET_RENDERER
36
37/*
38 * The following define controls whether new load_volume_stream or
39 * load_volume_stream2 are used to load DX data.  The difference is that
40 * load_volume_stream2 doesn't do any interpolation of the points to a coarser
41 * mesh.  Right now, we're using load_volume_stream2 to make isosurfaces
42 * work correctly. 
43
44 * [In the future, we'll use the OpenDX library reader and determine at
45 * runtime if mesh decimation is required]
46 */
47#define ISO_TEST                0
48
49/*
50 * The following define controls whether the plane* commands are
51 * registered in the interpreter.  Right now it's off.  [Are these
52 * commands still required?]
53 */
54#define PLANE_CMD               0
55
56#endif
Note: See TracBrowser for help on using the repository browser.