summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/accum.h
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-09-07 17:51:42 +0800
committerBrian Paul <brianp@vmware.com>2009-09-30 08:31:55 -0600
commita833ff0f53da6e365d917bb0081d909a809b6ec1 (patch)
treea5b6b1297416ed129cd8239d117b64e9f58fe9b6 /src/mesa/main/accum.h
parente82b02c7e839189bcafe6c81ae8972fe6a88dd01 (diff)
downloadexternal_mesa3d-a833ff0f53da6e365d917bb0081d909a809b6ec1.zip
external_mesa3d-a833ff0f53da6e365d917bb0081d909a809b6ec1.tar.gz
external_mesa3d-a833ff0f53da6e365d917bb0081d909a809b6ec1.tar.bz2
mesa/main: Make FEATURE_accum follow feature conventions.
As shown in mfeatures.h, this allows users of accum.h to work without knowing if the feature is available.
Diffstat (limited to 'src/mesa/main/accum.h')
-rw-r--r--src/mesa/main/accum.h39
1 files changed, 27 insertions, 12 deletions
diff --git a/src/mesa/main/accum.h b/src/mesa/main/accum.h
index ce92688..63740f0 100644
--- a/src/mesa/main/accum.h
+++ b/src/mesa/main/accum.h
@@ -38,25 +38,40 @@
#define ACCUM_H
-#include "mtypes.h"
+#include "main/mtypes.h"
-#if _HAVE_FULL_GL
-
-extern void GLAPIENTRY
-_mesa_Accum( GLenum op, GLfloat value );
+#if FEATURE_accum
+#define _MESA_INIT_ACCUM_FUNCTIONS(driver, impl) \
+ do { \
+ (driver)->Accum = impl ## Accum; \
+ } while (0)
extern void GLAPIENTRY
_mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
-extern void
-_mesa_init_accum( GLcontext *ctx );
+extern void
+_mesa_init_accum_dispatch(struct _glapi_table *disp);
+
+#else /* FEATURE_accum */
-#else
+#define _MESA_INIT_ACCUM_FUNCTIONS(driver, impl) do { } while (0)
-/** No-op */
-#define _mesa_init_accum( c ) ((void)0)
+static INLINE void
+_mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
+{
+ /* this is used in _mesa_PopAttrib */
+ ASSERT_NO_FEATURE();
+}
-#endif
+static INLINE void
+_mesa_init_accum_dispatch(struct _glapi_table *disp)
+{
+}
+
+#endif /* FEATURE_accum */
+
+extern void
+_mesa_init_accum( GLcontext *ctx );
-#endif
+#endif /* ACCUM_H */