summaryrefslogtreecommitdiff
path: root/src/mesa/main/get_gen.py
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-05-07 17:10:03 -0600
committerBrian Paul <brianp@vmware.com>2010-05-07 17:10:05 -0600
commit3965bc5d22deef6ada838a3ba991d6347201a28a (patch)
tree9d24ef65c05cb11cbd75b2e444a041eae0fac619 /src/mesa/main/get_gen.py
parentdb178af09d734f2f973d50de9ff90fe1cbb5e9c9 (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.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py
index 21f7750dbd..d7c543f368 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: