summaryrefslogtreecommitdiff
path: root/src/mesa/main/convolve.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-11-21 23:26:13 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-11-21 23:26:13 +0000
commit0c000ec90c8ca38bfcb94394001665d0be3112dd (patch)
tree3eee8bc046c72ec09b5b53327799c69e91e6e247 /src/mesa/main/convolve.c
parentc34cea7de54525a337c904cf22fc026b7ca31578 (diff)
call gl_update_state() if needed in glGetColorTable, glGetConvolutionFilter
Diffstat (limited to 'src/mesa/main/convolve.c')
-rw-r--r--src/mesa/main/convolve.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mesa/main/convolve.c b/src/mesa/main/convolve.c
index 1641f497d8..172afd3dd2 100644
--- a/src/mesa/main/convolve.c
+++ b/src/mesa/main/convolve.c
@@ -1,4 +1,4 @@
-/* $Id: convolve.c,v 1.12 2000/11/21 23:01:22 brianp Exp $ */
+/* $Id: convolve.c,v 1.13 2000/11/21 23:26:13 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -564,6 +564,10 @@ _mesa_GetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid *im
GET_CURRENT_CONTEXT(ctx);
ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetConvolutionFilter");
+ if (ctx->NewState) {
+ gl_update_state(ctx);
+ }
+
if (!_mesa_is_legal_format_and_type(format, type) ||
format == GL_COLOR_INDEX ||
format == GL_STENCIL_INDEX ||
@@ -739,6 +743,10 @@ _mesa_GetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid *row,
GET_CURRENT_CONTEXT(ctx);
ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetSeparableFilter");
+ if (ctx->NewState) {
+ gl_update_state(ctx);
+ }
+
if (target != GL_SEPARABLE_2D) {
gl_error(ctx, GL_INVALID_ENUM, "glGetSeparableFilter(target)");
return;