summaryrefslogtreecommitdiff
path: root/src/mesa/main/enable.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-03-07 18:24:49 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-03-07 18:24:49 +0000
commitfca17350b630ce26e2335ffb29d58c9bf897accb (patch)
tree51a34a7712f4421f0d563cc24e20c3895ede586f /src/mesa/main/enable.c
parent7a7ca3f345361d26a56de767fc63a1f2d2934ea8 (diff)
removed Driver.UseGlobalTexturePalette()
Diffstat (limited to 'src/mesa/main/enable.c')
-rw-r--r--src/mesa/main/enable.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c
index 8a1b79f610..94defaad74 100644
--- a/src/mesa/main/enable.c
+++ b/src/mesa/main/enable.c
@@ -1,4 +1,4 @@
-/* $Id: enable.c,v 1.10 1999/11/11 01:22:26 brianp Exp $ */
+/* $Id: enable.c,v 1.11 2000/03/07 18:24:49 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -328,8 +328,6 @@ void _mesa_set_enable( GLcontext *ctx, GLenum cap, GLboolean state )
break;
case GL_SHARED_TEXTURE_PALETTE_EXT:
ctx->Texture.SharedPalette = state;
- if (ctx->Driver.UseGlobalTexturePalette)
- (*ctx->Driver.UseGlobalTexturePalette)( ctx, state );
break;
case GL_STENCIL_TEST:
if (state && ctx->Visual->StencilBits==0) {