diff options
author | Brian Paul <[email protected]> | 2009-08-18 09:42:38 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-18 17:09:32 -0600 |
commit | b062a119ff5fa06fe7b2e40262829f93cde63a96 (patch) | |
tree | 874d38eb73e8e5d76425957cbe87da70d67275a1 /src/mesa/main/get_gen.py | |
parent | f9b8562f32b77a27c872d4c70a86995032541107 (diff) |
mesa: call FLUSH_CURRENT() for GL_CURRENT_TEXTURE_COORDS query
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index e9c8226d08d..97dc7850201 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -176,7 +176,8 @@ StateVars = [ "ctx->Current.Attrib[VERT_ATTRIB_TEX0 + texUnit][1]", "ctx->Current.Attrib[VERT_ATTRIB_TEX0 + texUnit][2]", "ctx->Current.Attrib[VERT_ATTRIB_TEX0 + texUnit][3]"], - "const GLuint texUnit = ctx->Texture.CurrentUnit;", None ), + """const GLuint texUnit = ctx->Texture.CurrentUnit; + FLUSH_CURRENT(ctx, 0);""", None ), ( "GL_DEPTH_BIAS", GLfloat, ["ctx->Pixel.DepthBias"], "", None ), ( "GL_DEPTH_BITS", GLint, ["ctx->DrawBuffer->Visual.depthBits"], "", None ), |