diff options
author | Brian Paul <[email protected]> | 2010-01-05 21:24:48 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-05 21:24:48 -0700 |
commit | d4f2d6556ec0bdaf7ef07fd34fa5d8a355fe2ec0 (patch) | |
tree | b5b9621751e9dd69510f83d5bee3758b11feefd8 /src/mesa/main/get_gen.py | |
parent | 3510a1b0c5398b4fce4157d5b578344d2a0bd7d3 (diff) |
mesa: added GL_MAJOR_VERSION and GL_MINOR_VERSION queries
New in GL 3.0.
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 7540661187f..b0beb592075 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -1033,6 +1033,8 @@ StateVars = [ # GL3 ( "GL_NUM_EXTENSIONS", GLint, ["_mesa_get_extension_count(ctx)"], "", None ), + ( "GL_MAJOR_VERSION", GLint, ["ctx->VersionMajor"], "", None ), + ( "GL_MINOR_VERSION", GLint, ["ctx->VersionMinor"], "", None ) ] |