From: Brian Paul Date: Fri, 20 Feb 2009 17:47:28 +0000 (-0700) Subject: intel: fix datatype typo, s/GLboolean/GLuint/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=da2b661ee45a2754bab06359477428ef7df570ca;p=mesa.git intel: fix datatype typo, s/GLboolean/GLuint/ Fixes mysterious failures in glean glsl1 test. --- diff --git a/src/mesa/drivers/dri/intel/intel_clear.c b/src/mesa/drivers/dri/intel/intel_clear.c index 7c297ec9366..c3ba50f3550 100644 --- a/src/mesa/drivers/dri/intel/intel_clear.c +++ b/src/mesa/drivers/dri/intel/intel_clear.c @@ -83,7 +83,7 @@ intel_clear_tris(GLcontext *ctx, GLbitfield mask) struct gl_framebuffer *fb = ctx->DrawBuffer; int i; GLboolean saved_fp_enable = GL_FALSE, saved_vp_enable = GL_FALSE; - GLboolean saved_shader_program = 0; + GLuint saved_shader_program = 0; unsigned int saved_active_texture; assert((mask & ~(TRI_CLEAR_COLOR_BITS | BUFFER_BIT_DEPTH |