From 3965bc5d22deef6ada838a3ba991d6347201a28a Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 7 May 2010 17:10:03 -0600 Subject: 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. --- src/mesa/main/get_gen.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/mesa/main/get_gen.py') 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: -- cgit v1.2.3