summaryrefslogtreecommitdiff
path: root/src/mesa/main/image.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-10-28 21:17:42 -0600
committerBrian Paul <brianp@vmware.com>2010-10-28 21:17:42 -0600
commit7faf521fad970d6f6706fc9d3c3f4644f2e158ac (patch)
treee4343cc7ff4ab3e69c1311c06ff79efa41a15787 /src/mesa/main/image.c
parent113c1832b1fef04fc4856b4efeab71ac76a87ad0 (diff)
mesa: add const qualifier to _mesa_is_legal_format_and_type()
Diffstat (limited to 'src/mesa/main/image.c')
-rw-r--r--src/mesa/main/image.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c
index 65b7a62b52..a945ba2e14 100644
--- a/src/mesa/main/image.c
+++ b/src/mesa/main/image.c
@@ -368,7 +368,8 @@ _mesa_bytes_per_pixel( GLenum format, GLenum type )
* otherwise.
*/
GLboolean
-_mesa_is_legal_format_and_type( struct gl_context *ctx, GLenum format, GLenum type )
+_mesa_is_legal_format_and_type(const struct gl_context *ctx,
+ GLenum format, GLenum type)
{
switch (format) {
case GL_COLOR_INDEX: