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/dd.h | |
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/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 897051eec07..cab8f34404d 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -706,27 +706,6 @@ struct dd_function_table { /*@}*/ - /** - * \name State-query functions - * - * Return GL_TRUE if query was completed, GL_FALSE otherwise. - */ - /*@{*/ - /** Return the value or values of a selected parameter */ - GLboolean (*GetBooleanv)(GLcontext *ctx, GLenum pname, GLboolean *result); - /** Return the value or values of a selected parameter */ - GLboolean (*GetDoublev)(GLcontext *ctx, GLenum pname, GLdouble *result); - /** Return the value or values of a selected parameter */ - GLboolean (*GetFloatv)(GLcontext *ctx, GLenum pname, GLfloat *result); - /** Return the value or values of a selected parameter */ - GLboolean (*GetIntegerv)(GLcontext *ctx, GLenum pname, GLint *result); - /** Return the value or values of a selected parameter */ - GLboolean (*GetInteger64v)(GLcontext *ctx, GLenum pname, GLint64 *result); - /** Return the value or values of a selected parameter */ - GLboolean (*GetPointerv)(GLcontext *ctx, GLenum pname, GLvoid **result); - /*@}*/ - - /** * \name Vertex/pixel buffer object functions */ |