summaryrefslogtreecommitdiff
path: root/src/mesa/main/get.c
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.c
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.c')
-rw-r--r--src/mesa/main/get.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c
index e3015cd603..2e8b0a4e8c 100644
--- a/src/mesa/main/get.c
+++ b/src/mesa/main/get.c
@@ -83,10 +83,6 @@ _mesa_GetBooleanv( GLenum pname, GLboolean *params )
if (!params)
return;
- if (ctx->Driver.GetBooleanv &&
- ctx->Driver.GetBooleanv(ctx, pname, params))
- return;
-
switch (pname) {
case GL_ACCUM_RED_BITS:
params[0] = INT_TO_BOOLEAN(ctx->DrawBuffer->Visual.accumRedBits);
@@ -2000,10 +1996,6 @@ _mesa_GetFloatv( GLenum pname, GLfloat *params )
if (!params)
return;
- if (ctx->Driver.GetFloatv &&
- ctx->Driver.GetFloatv(ctx, pname, params))
- return;
-
switch (pname) {
case GL_ACCUM_RED_BITS:
params[0] = (GLfloat)(ctx->DrawBuffer->Visual.accumRedBits);
@@ -3917,10 +3909,6 @@ _mesa_GetIntegerv( GLenum pname, GLint *params )
if (!params)
return;
- if (ctx->Driver.GetIntegerv &&
- ctx->Driver.GetIntegerv(ctx, pname, params))
- return;
-
switch (pname) {
case GL_ACCUM_RED_BITS:
params[0] = ctx->DrawBuffer->Visual.accumRedBits;
@@ -5835,10 +5823,6 @@ _mesa_GetInteger64v( GLenum pname, GLint64 *params )
if (!params)
return;
- if (ctx->Driver.GetInteger64v &&
- ctx->Driver.GetInteger64v(ctx, pname, params))
- return;
-
switch (pname) {
case GL_ACCUM_RED_BITS:
params[0] = (GLint64)(ctx->DrawBuffer->Visual.accumRedBits);