diff options
author | Brian Paul <[email protected]> | 2009-12-30 10:16:01 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-12-30 10:16:01 -0700 |
commit | 802b80893943cf129039a37fb2afe26444b09332 (patch) | |
tree | 309accdb5aecc2da7b5a824ef288a981152aa866 /src/mesa/main/get_gen.py | |
parent | 1ec6de9f948b45e24ecd0e039819e90863ec9646 (diff) |
mesa: implement GL3 GL_NUM_EXTENSIONS query
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 82eacf03146..7540661187f 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -1030,6 +1030,9 @@ StateVars = [ # GL_ARB_sync ( "GL_MAX_SERVER_WAIT_TIMEOUT", GLint64, ["ctx->Const.MaxServerWaitTimeout"], "", ["ARB_sync"] ), + + # GL3 + ( "GL_NUM_EXTENSIONS", GLint, ["_mesa_get_extension_count(ctx)"], "", None ), ] |