summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/accum.c6
-rw-r--r--src/mesa/main/accum.h31
-rw-r--r--src/mesa/main/mfeatures.h1
3 files changed, 0 insertions, 38 deletions
diff --git a/src/mesa/main/accum.c b/src/mesa/main/accum.c
index 16c26168ad1..8b71640df6c 100644
--- a/src/mesa/main/accum.c
+++ b/src/mesa/main/accum.c
@@ -36,9 +36,6 @@
#include "main/dispatch.h"
-#if FEATURE_accum
-
-
void GLAPIENTRY
_mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
{
@@ -496,9 +493,6 @@ _mesa_accum(struct gl_context *ctx, GLenum op, GLfloat value)
}
-#endif /* FEATURE_accum */
-
-
void
_mesa_init_accum( struct gl_context *ctx )
{
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 );
diff --git a/src/mesa/main/mfeatures.h b/src/mesa/main/mfeatures.h
index b7acbee7e0f..4e608f489e2 100644
--- a/src/mesa/main/mfeatures.h
+++ b/src/mesa/main/mfeatures.h
@@ -84,7 +84,6 @@
#define FEATURE_remap_table 0
#endif
-#define FEATURE_accum FEATURE_GL
#define FEATURE_arrayelt FEATURE_GL
#define FEATURE_attrib_stack FEATURE_GL
/* this disables vtxfmt, api_loopback, and api_noop completely */