diff options
| author | Chia-I Wu <olvaffe@gmail.com> | 2009-09-08 10:25:22 +0800 | 
|---|---|---|
| committer | Chia-I Wu <olvaffe@gmail.com> | 2009-09-12 20:55:58 +0800 | 
| commit | 17f2649e269b9d98abd6a66f687ffa29904bf4a0 (patch) | |
| tree | ac6322916e350b280b326327b749d063d48686f7 /src/mesa/main/context.c | |
| parent | 57ce3ab32382d08ac8f0aeca13677612af3adfc0 (diff) | |
mesa/main: Make FEATURE_evaluators follow feature conventions.
As shown in mfeatures.h, this allows users of eval.h to work without
knowing if the feature is available.  It is renamed to FEATURE_eval
along the way.
Diffstat (limited to 'src/mesa/main/context.c')
| -rw-r--r-- | src/mesa/main/context.c | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 6994f98504..03ee7fb04d 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -94,9 +94,7 @@  #if FEATURE_dlist  #include "dlist.h"  #endif -#if FEATURE_evaluators  #include "eval.h" -#endif  #include "enums.h"  #include "extensions.h"  #include "fbobject.h" @@ -675,9 +673,7 @@ init_attrib_groups(GLcontext *ctx)  #if FEATURE_dlist     _mesa_init_display_list( ctx );  #endif -#if FEATURE_evaluators     _mesa_init_eval( ctx ); -#endif     _mesa_init_fbobjects( ctx );     _mesa_init_feedback( ctx );     _mesa_init_fog( ctx ); @@ -977,9 +973,7 @@ _mesa_free_context_data( GLcontext *ctx )     _mesa_free_attrib_data(ctx);     _mesa_free_lighting_data( ctx ); -#if FEATURE_evaluators     _mesa_free_eval_data( ctx ); -#endif     _mesa_free_texture_data( ctx );     _mesa_free_matrix_data( ctx );     _mesa_free_viewport_data( ctx ); | 
