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/getstring.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/mesa/main/getstring.c') diff --git a/src/mesa/main/getstring.c b/src/mesa/main/getstring.c index e3a60fa6eb..54db5794bf 100644 --- a/src/mesa/main/getstring.c +++ b/src/mesa/main/getstring.c @@ -172,10 +172,6 @@ _mesa_GetPointerv( GLenum pname, GLvoid **params ) if (MESA_VERBOSE & VERBOSE_API) _mesa_debug(ctx, "glGetPointerv %s\n", _mesa_lookup_enum_by_nr(pname)); - if (ctx->Driver.GetPointerv - && (*ctx->Driver.GetPointerv)(ctx, pname, params)) - return; - switch (pname) { case GL_VERTEX_ARRAY_POINTER: *params = (GLvoid *) ctx->Array.ArrayObj->Vertex.Ptr; -- cgit v1.2.3