diff options
author | Brian Paul <[email protected]> | 2000-05-07 20:37:40 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-05-07 20:37:40 +0000 |
commit | 82b02f0ef24bf139778c8eec8d62dfa3366dff35 (patch) | |
tree | b997b9c9c631cfe3cd27a1dbefda1f52c7cae60a /src/mesa/main/enable.c | |
parent | 9cff55806449786af8fade599a2b96487d55ea65 (diff) |
initial code for GL_EXT_histogram extension
Diffstat (limited to 'src/mesa/main/enable.c')
-rw-r--r-- | src/mesa/main/enable.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index 70e29b98690..9a64a00e7ab 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1,4 +1,4 @@ -/* $Id: enable.c,v 1.17 2000/05/05 23:41:52 brianp Exp $ */ +/* $Id: enable.c,v 1.18 2000/05/07 20:37:40 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -495,6 +495,17 @@ void _mesa_set_enable( GLcontext *ctx, GLenum cap, GLboolean state ) ctx->Pixel.PostColorMatrixColorTableEnabled = state; break; + /* GL_EXT_convolution */ + case GL_CONVOLUTION_1D: + ctx->Pixel.Convolution1DEnabled = state; + break; + case GL_CONVOLUTION_2D: + ctx->Pixel.Convolution2DEnabled = state; + break; + case GL_SEPARABLE_2D: + ctx->Pixel.Separable2DEnabled = state; + break; + default: if (state) { gl_error( ctx, GL_INVALID_ENUM, "glEnable" ); @@ -719,6 +730,14 @@ _mesa_IsEnabled( GLenum cap ) case GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI: return ctx->Pixel.PostColorMatrixColorTableEnabled; + /* GL_EXT_convolution */ + case GL_CONVOLUTION_1D: + return ctx->Pixel.Convolution1DEnabled; + case GL_CONVOLUTION_2D: + return ctx->Pixel.Convolution2DEnabled; + case GL_SEPARABLE_2D: + return ctx->Pixel.Separable2DEnabled; + default: gl_error( ctx, GL_INVALID_ENUM, "glIsEnabled" ); return GL_FALSE; |