diff options
author | Brian Paul <[email protected]> | 2002-10-16 17:57:51 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-16 17:57:51 +0000 |
commit | 8dfc5b9863f08a713177fd92847573e17febbac9 (patch) | |
tree | ea828725e04950d4d7416067493135f6731f9f2e /src/mesa/main/config.h | |
parent | e32b9090541f0e8e44d10953017617621edb5635 (diff) |
surround vertex program code with #if FEATURE_NV_vertex_program/#endif
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r-- | src/mesa/main/config.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index c3738174d4e..985176f7498 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -1,4 +1,4 @@ -/* $Id: config.h,v 1.41 2002/10/05 03:01:28 brianp Exp $ */ +/* $Id: config.h,v 1.42 2002/10/16 17:57:51 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -197,4 +197,11 @@ #define ACOMP 3 + +/* + * Enable/disable features (blocks of code) by setting FEATURE_xyz to 0 or 1. + */ +#define FEATURE_NV_vertex_program 1 + + #endif /* CONFIG_H */ |