summaryrefslogtreecommitdiffstats
path: root/src/mapi/glapi/glapitable.h
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2011-03-25 11:23:16 +0000
committerJosé Fonseca <[email protected]>2011-03-25 16:22:26 +0000
commitacd7ce57f79b3bd729041dc97c04a78386d13404 (patch)
tree2811a86f7c66349a21ed71ff5fb59f5c4ce369b7 /src/mapi/glapi/glapitable.h
parent226ae9d6c8f282de788404b4d98af7ddf8ee30f4 (diff)
mesa,mapi: Remove spurious const keyword from ClearBufferfi args.
Diffstat (limited to 'src/mapi/glapi/glapitable.h')
-rw-r--r--src/mapi/glapi/glapitable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/glapitable.h b/src/mapi/glapi/glapitable.h
index 1de71b97daf..bc6f25f9d18 100644
--- a/src/mapi/glapi/glapitable.h
+++ b/src/mapi/glapi/glapitable.h
@@ -471,7 +471,7 @@ struct _glapi_table
void (GLAPIENTRYP UniformMatrix4x2fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 428 */
void (GLAPIENTRYP UniformMatrix4x3fv)(GLint location, GLsizei count, GLboolean transpose, const GLfloat * value); /* 429 */
void (GLAPIENTRYP ClampColor)(GLenum target, GLenum clamp); /* 430 */
- void (GLAPIENTRYP ClearBufferfi)(GLenum buffer, GLint drawbuffer, const GLfloat depth, const GLint stencil); /* 431 */
+ void (GLAPIENTRYP ClearBufferfi)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); /* 431 */
void (GLAPIENTRYP ClearBufferfv)(GLenum buffer, GLint drawbuffer, const GLfloat * value); /* 432 */
void (GLAPIENTRYP ClearBufferiv)(GLenum buffer, GLint drawbuffer, const GLint * value); /* 433 */
void (GLAPIENTRYP ClearBufferuiv)(GLenum buffer, GLint drawbuffer, const GLuint * value); /* 434 */