From 978646d86fd19c0f564b01a469ffe0432fc5ab98 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 17 Sep 2003 03:31:30 +0000 Subject: fix up FEATURE_* defines --- src/mesa/main/config.h | 35 ++++++++++++++--------------------- 1 file changed, 14 insertions(+), 21 deletions(-) (limited to 'src/mesa/main/config.h') diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index d4c3cf5df8..3e1a23f2c5 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -242,34 +242,27 @@ #define BCOMP 2 #define ACOMP 3 -#ifndef _HAVE_FULL_GL -#define _HAVE_FULL_GL 1 -#endif /* * Enable/disable features (blocks of code) by setting FEATURE_xyz to 0 or 1. */ -#if _HAVE_FULL_GL -#define FEATURE_NV_vertex_program 1 -#define FEATURE_NV_fragment_program 1 -#define FEATURE_ARB_vertex_buffer_object 1 -#define FEATURE_ARB_vertex_program 1 -#define FEATURE_ARB_fragment_program 1 -#define FEATURE_ARB_occlusion_query 1 -#define FEATURE_ARB_vertex_buffer_object 1 -#define FEATURE_MESA_program_debug 1 -#define FEATURE_NV_fence 1 -#define FEATURE_userclip 1 -#define FEATURE_texgen 1 -#define FEATURE_windowpos 1 -#endif - -/*@}*/ - - #ifndef _HAVE_FULL_GL #define _HAVE_FULL_GL 1 #endif +#define FEATURE_ARB_vertex_buffer_object _HAVE_FULL_GL +#define FEATURE_ARB_vertex_program _HAVE_FULL_GL +#define FEATURE_ARB_fragment_program _HAVE_FULL_GL +#define FEATURE_ARB_occlusion_query _HAVE_FULL_GL +#define FEATURE_MESA_program_debug _HAVE_FULL_GL +#define FEATURE_NV_fence _HAVE_FULL_GL +#define FEATURE_NV_fragment_program _HAVE_FULL_GL +#define FEATURE_NV_vertex_program _HAVE_FULL_GL +#define FEATURE_userclip _HAVE_FULL_GL +#define FEATURE_texgen _HAVE_FULL_GL +#define FEATURE_windowpos _HAVE_FULL_GL + +/*@}*/ + #endif /* CONFIG_H */ -- cgit v1.2.3