diff options
author | Oliver McFadden <[email protected]> | 2012-09-11 09:02:42 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-09-15 12:56:29 +0300 |
commit | 016ba4cc2c850259cf902d4d3d287040942b5c1b (patch) | |
tree | e6b0f66df34f0f5d0145bad367f37dd2b4d062e6 /src/mesa/main/accum.h | |
parent | fc66313c96b0311c592322fe47bf0d51fd1a9dcc (diff) |
mesa: remove FEATURE_accum define.
Signed-off-by: Oliver McFadden <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/accum.h')
-rw-r--r-- | src/mesa/main/accum.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/mesa/main/accum.h b/src/mesa/main/accum.h index 5b3f06aa9f1..594a7687db0 100644 --- a/src/mesa/main/accum.h +++ b/src/mesa/main/accum.h @@ -44,8 +44,6 @@ struct _glapi_table; struct gl_context; struct gl_renderbuffer; -#if FEATURE_accum - extern void GLAPIENTRY _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); @@ -58,35 +56,6 @@ _mesa_accum(struct gl_context *ctx, GLenum op, GLfloat value); extern void _mesa_clear_accum_buffer(struct gl_context *ctx); -#else /* FEATURE_accum */ - -#include "main/compiler.h" - -static inline void -_mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) -{ - /* this is used in _mesa_PopAttrib */ - ASSERT_NO_FEATURE(); -} - -static inline void -_mesa_init_accum_dispatch(struct _glapi_table *disp) -{ -} - -static inline void -_mesa_accum(struct gl_context *ctx, GLenum op, GLfloat value) -{ -} - -static inline void -_mesa_clear_accum_buffer(struct gl_context *ctx) -{ -} - - -#endif /* FEATURE_accum */ - extern void _mesa_init_accum( struct gl_context *ctx ); |