diff options
author | Brian Paul <[email protected]> | 2009-05-28 12:31:56 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-05-28 12:31:56 -0600 |
commit | f2f89b01d2179775e240145ce62923854c1c8936 (patch) | |
tree | feb2c26de17232c6b579d0fa213a7ff075ab0309 /src/mesa/main/get_gen.py | |
parent | fe86e508967bd7b63902928033247e145103f60c (diff) |
mesa: glGet queries for GL_EXT_provoking_vertex
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 43ee5fff109..5666ad0e42e 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -976,6 +976,13 @@ StateVars = [ ( "GL_READ_FRAMEBUFFER_BINDING_EXT", GLint, ["ctx->ReadBuffer->Name"], "", ["EXT_framebuffer_blit"] ), + # GL_EXT_provoking_vertex + ( "GL_PROVOKING_VERTEX_EXT", GLboolean, + ["ctx->Light.ProvokingVertex"], "", ["EXT_provoking_vertex"] ), + ( "GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT", GLboolean, + ["ctx->Const.QuadsFollowProvokingVertexConvention"], "", + ["EXT_provoking_vertex"] ), + # GL_ARB_fragment_shader ( "GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB", GLint, ["ctx->Const.FragmentProgram.MaxUniformComponents"], "", |