summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_accum.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/swrast/s_accum.h')
-rw-r--r--src/mesa/swrast/s_accum.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/swrast/s_accum.h b/src/mesa/swrast/s_accum.h
index 42e38cf02b..730c0254b2 100644
--- a/src/mesa/swrast/s_accum.h
+++ b/src/mesa/swrast/s_accum.h
@@ -30,8 +30,19 @@
#include "main/mtypes.h"
+#if FEATURE_accum
+
extern void
_swrast_clear_accum_buffer(GLcontext *ctx, struct gl_renderbuffer *rb);
+#else /* FEATURE_accum */
+
+static INLINE void
+_swrast_clear_accum_buffer(GLcontext *ctx, struct gl_renderbuffer *rb)
+{
+ ASSERT_NO_FEATURE();
+}
#endif
+
+#endif /* S_ACCUM_H */