From 7faf521fad970d6f6706fc9d3c3f4644f2e158ac Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 28 Oct 2010 21:17:42 -0600 Subject: mesa: add const qualifier to _mesa_is_legal_format_and_type() --- src/mesa/main/image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mesa/main/image.c') 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: -- cgit v1.2.3