source: nanovis/branches/1.1/config.h @ 4890

Last change on this file since 4890 was 4874, checked in by ldelgass, 9 years ago

Add command line options to set I/O file descriptors, merge some refactoring to
prep for merging threading support.

  • Property svn:eol-style set to native
File size: 1.5 KB
RevLine 
[2798]1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
[251]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 *
[3502]10 *  Copyright (c) 2004-2013  HUBzero Foundation, LLC
[251]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
[2841]17#ifndef CONFIG_H__
18#define CONFIG_H__
[251]19
[2877]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
[3362]39/*
40 * Keep statistics
41 */
42#define KEEPSTATS
[2877]43
[4874]44//#define USE_NEW_EVENT_LOOP
45
[3362]46/*
47 * Controls whether DX data is downsampled.
[1028]48 */
[3362]49//#define DOWNSAMPLE_DATA
[1028]50
[2877]51/*
52 * Determines if Sobel filter is applied to gradients when loading a
53 * volume
54 */
[3522]55//#define FILTER_GRADIENTS
[2877]56
[829]57#endif
Note: See TracBrowser for help on using the repository browser.