From 021cdd698bb57ae9b12b84582302a8d7f656db0c Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Thu, 11 Mar 2010 18:13:18 +0800 Subject: mesa/es: Validate the state in st_DrawTex. Without the validation, the function might draw with outdated textures. --- src/mesa/es/state_tracker/st_cb_drawtex.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/mesa/es/state_tracker/st_cb_drawtex.c b/src/mesa/es/state_tracker/st_cb_drawtex.c index e4b8954991..f75f4861a2 100644 --- a/src/mesa/es/state_tracker/st_cb_drawtex.c +++ b/src/mesa/es/state_tracker/st_cb_drawtex.c @@ -123,6 +123,8 @@ st_DrawTex(GLcontext *ctx, GLfloat x, GLfloat y, GLfloat z, struct pipe_vertex_element velements[2 + MAX_TEXTURE_UNITS]; GLbitfield inputs = VERT_BIT_POS; + st_validate_state(st); + /* determine if we need vertex color */ if (ctx->FragmentProgram._Current->Base.InputsRead & FRAG_BIT_COL0) emitColor = GL_TRUE; -- cgit v1.2.3