diff options
author | Brian Paul <[email protected]> | 2010-05-07 17:10:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-07 17:10:05 -0600 |
commit | 3965bc5d22deef6ada838a3ba991d6347201a28a (patch) | |
tree | 9d24ef65c05cb11cbd75b2e444a041eae0fac619 /src/mesa/main/get_gen.py | |
parent | db178af09d734f2f973d50de9ff90fe1cbb5e9c9 (diff) |
mesa: remove driver hooks for GetFloat/Integer/Doublev, etc
Once upon a time some drivers hooked into these for GL_HP_occlusion_test
and GL_OES_read_format. They're not being used anymore so get rid of them.
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 21f7750dbd7..d7c543f3681 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -1268,11 +1268,6 @@ def EmitGetFunction(stateVars, returnType, indexed): print " if (!params)" print " return;" print "" - if indexed == 0: - print " if (ctx->Driver.%s &&" % function - print " ctx->Driver.%s(ctx, pname, params))" % function - print " return;" - print "" print " switch (pname) {" for state in stateVars: |