diff options
author | Brian Paul <[email protected]> | 2000-04-12 00:27:37 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-12 00:27:37 +0000 |
commit | 13811376c99addb0616c9397cc7d5715befcd8d4 (patch) | |
tree | 7ec9a57f7f8b846a23783bc54ea6a35cddde3240 /src/mesa/main/enable.c | |
parent | 5223c4d33f6f1f66a30c482cd515558f0591c24a (diff) |
more GL_SGI_color_table extension work
Diffstat (limited to 'src/mesa/main/enable.c')
-rw-r--r-- | src/mesa/main/enable.c | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index 37090d9c2fa..8c71d87cd0f 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1,4 +1,4 @@ -/* $Id: enable.c,v 1.14 2000/04/07 16:27:26 brianp Exp $ */ +/* $Id: enable.c,v 1.15 2000/04/12 00:27:37 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -477,6 +477,17 @@ void _mesa_set_enable( GLcontext *ctx, GLenum cap, GLboolean state ) ctx->Pixel.PixelTextureEnabled = state; break; + /* GL_SGI_color_table */ + case GL_COLOR_TABLE_SGI: + ctx->Pixel.ColorTableEnabled = state; + break; + case GL_POST_CONVOLUTION_COLOR_TABLE_SGI: + ctx->Pixel.PostConvolutionColorTableEnabled = state; + break; + case GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI: + ctx->Pixel.PostColorMatrixColorTableEnabled = state; + break; + default: if (state) { gl_error( ctx, GL_INVALID_ENUM, "glEnable" ); @@ -684,12 +695,18 @@ _mesa_IsEnabled( GLenum cap ) /* GL_SGIS_pixel_texture */ case GL_PIXEL_TEXTURE_SGIS: return ctx->Pixel.PixelTextureEnabled; - break; /* GL_SGIX_pixel_texture */ case GL_PIXEL_TEX_GEN_SGIX: return ctx->Pixel.PixelTextureEnabled; - break; + + /* GL_SGI_color_table */ + case GL_COLOR_TABLE_SGI: + return ctx->Pixel.ColorTableEnabled; + case GL_POST_CONVOLUTION_COLOR_TABLE_SGI: + return ctx->Pixel.PostConvolutionColorTableEnabled; + case GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI: + return ctx->Pixel.PostColorMatrixColorTableEnabled; default: gl_error( ctx, GL_INVALID_ENUM, "glIsEnabled" ); |