aboutsummaryrefslogtreecommitdiffstats
path: root/src/mapi/glapi/glapitemp.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/glapitemp.h
parent226ae9d6c8f282de788404b4d98af7ddf8ee30f4 (diff)
mesa,mapi: Remove spurious const keyword from ClearBufferfi args.
Diffstat (limited to 'src/mapi/glapi/glapitemp.h')
-rw-r--r--src/mapi/glapi/glapitemp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/glapitemp.h b/src/mapi/glapi/glapitemp.h
index 941532046e0..893bd200341 100644
--- a/src/mapi/glapi/glapitemp.h
+++ b/src/mapi/glapi/glapitemp.h
@@ -2637,7 +2637,7 @@ KEYWORD1 void KEYWORD2 NAME(ClampColor)(GLenum target, GLenum clamp)
DISPATCH(ClampColor, (target, clamp), (F, "glClampColor(0x%x, 0x%x);\n", target, clamp));
}
-KEYWORD1 void KEYWORD2 NAME(ClearBufferfi)(GLenum buffer, GLint drawbuffer, const GLfloat depth, const GLint stencil)
+KEYWORD1 void KEYWORD2 NAME(ClearBufferfi)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil)
{
DISPATCH(ClearBufferfi, (buffer, drawbuffer, depth, stencil), (F, "glClearBufferfi(0x%x, %d, %f, %d);\n", buffer, drawbuffer, depth, stencil));
}