From: Brian Paul Date: Fri, 26 Sep 2008 13:37:15 +0000 (-0600) Subject: mesa: remove const qualifiers to match device driver interface function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=47bf26845712bea756526fc159bdb355ceaef9c2;p=mesa.git mesa: remove const qualifiers to match device driver interface function --- diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c index 958f88bf2c4..e545e00eb2a 100644 --- a/src/mesa/state_tracker/st_cb_texture.c +++ b/src/mesa/state_tracker/st_cb_texture.c @@ -749,8 +749,8 @@ st_GetTexImage(GLcontext * ctx, GLenum target, GLint level, static void st_GetCompressedTexImage(GLcontext *ctx, GLenum target, GLint level, GLvoid *pixels, - const struct gl_texture_object *texObj, - const struct gl_texture_image *texImage) + struct gl_texture_object *texObj, + struct gl_texture_image *texImage) { st_get_tex_image(ctx, target, level, 0, 0, pixels, (struct gl_texture_object *) texObj,