From: Chia-I Wu Date: Thu, 11 Mar 2010 10:13:18 +0000 (+0800) Subject: mesa/es: Validate the state in st_DrawTex. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=021cdd698bb57ae9b12b84582302a8d7f656db0c;p=mesa.git mesa/es: Validate the state in st_DrawTex. Without the validation, the function might draw with outdated textures. --- diff --git a/src/mesa/es/state_tracker/st_cb_drawtex.c b/src/mesa/es/state_tracker/st_cb_drawtex.c index e4b89549917..f75f4861a2f 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;