diff options
author | Brian Paul <[email protected]> | 2009-05-21 21:49:57 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-05-21 21:49:57 -0600 |
commit | 70c4b81e88e18e354e8dfaf47e5455e463b207d8 (patch) | |
tree | 8eea1bc62b586b8d14a30a26ef637c6ef2a4a96b /src/mesa/main/get_gen.py | |
parent | 8da09e6924ca22ba7951d5a7673dfab2a711a997 (diff) |
mesa: add missing glGet*() case for GL_VERTEX_ARRAY_BINDING_APPLE
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index fa695c48f1a..00dcb19335c 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -1003,7 +1003,10 @@ StateVars = [ # GL_ARB_framebuffer_object ( "GL_MAX_SAMPLES", GLint, ["ctx->Const.MaxSamples"], "", - ["ARB_framebuffer_object"] ) + ["ARB_framebuffer_object"] ), + + ( "GL_VERTEX_ARRAY_BINDING_APPLE", GLint, ["ctx->Array.ArrayObj->Name"], "", + ["APPLE_vertex_array_object"] ), ] |