Mesa (gallium-0.2): mesa: remove const qualifiers to match device driver interface function

Brian Paul brianp at kemper.freedesktop.org
Fri Sep 26 13:37:44 UTC 2008


Module: Mesa
Branch: gallium-0.2
Commit: 47bf26845712bea756526fc159bdb355ceaef9c2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=47bf26845712bea756526fc159bdb355ceaef9c2

Author: Brian Paul <brian.paul at tungstengraphics.com>
Date:   Fri Sep 26 07:37:15 2008 -0600

mesa: remove const qualifiers to match device driver interface function

---

 src/mesa/state_tracker/st_cb_texture.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c
index 958f88b..e545e00 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,




More information about the mesa-commit mailing list