diff options
author | Oliver McFadden <[email protected]> | 2012-09-11 09:15:32 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-09-15 12:56:48 +0300 |
commit | fa9fc2332b6b76460d29c0045b2e1a8d8036ed6b (patch) | |
tree | cb081a056386537905e8585f059db78386875641 /src/mesa/main/eval.h | |
parent | 24c3d16f3b2bcfa1cff6836ffaf136333893f1e3 (diff) |
mesa: remove FEATURE_evaluators define.
Signed-off-by: Oliver McFadden <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/eval.h')
-rw-r--r-- | src/mesa/main/eval.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mesa/main/eval.h b/src/mesa/main/eval.h index c07d4d53298..0649de052d4 100644 --- a/src/mesa/main/eval.h +++ b/src/mesa/main/eval.h @@ -41,8 +41,6 @@ #include "main/mtypes.h" -#if FEATURE_evaluators - #define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) \ do { \ (vfmt)->EvalCoord1f = impl ## EvalCoord1f; \ @@ -83,23 +81,6 @@ _mesa_install_eval_vtxfmt(struct _glapi_table *disp, extern void _mesa_init_eval_dispatch(struct _glapi_table *disp); -#else /* FEATURE_evaluators */ - -#define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) do { } while (0) - -static inline void -_mesa_install_eval_vtxfmt(struct _glapi_table *disp, - const GLvertexformat *vfmt) -{ -} - -static inline void -_mesa_init_eval_dispatch(struct _glapi_table *disp) -{ -} - -#endif /* FEATURE_evaluators */ - extern void _mesa_init_eval( struct gl_context *ctx ); extern void _mesa_free_eval_data( struct gl_context *ctx ); |