summaryrefslogtreecommitdiff
path: root/src/mesa/main/get_gen.py
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-30 10:16:01 -0700
committerBrian Paul <brianp@vmware.com>2009-12-30 10:16:01 -0700
commit802b80893943cf129039a37fb2afe26444b09332 (patch)
tree309accdb5aecc2da7b5a824ef288a981152aa866 /src/mesa/main/get_gen.py
parent1ec6de9f948b45e24ecd0e039819e90863ec9646 (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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py
index 82eacf0314..7540661187 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 ),
]