Mesa (gallium-userbuf): softpipe: cast away const to silence warning

Brian Paul brianp at kemper.freedesktop.org
Tue May 1 14:14:45 UTC 2012


Module: Mesa
Branch: gallium-userbuf
Commit: b5752e16e82d4375171d157cb116a81ea025ea7b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b5752e16e82d4375171d157cb116a81ea025ea7b

Author: Brian Paul <brianp at vmware.com>
Date:   Mon Apr 30 14:37:12 2012 -0600

softpipe: cast away const to silence warning

---

 src/gallium/drivers/softpipe/sp_state_shader.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_state_shader.c b/src/gallium/drivers/softpipe/sp_state_shader.c
index 4056d2d..910d4ba 100644
--- a/src/gallium/drivers/softpipe/sp_state_shader.c
+++ b/src/gallium/drivers/softpipe/sp_state_shader.c
@@ -350,7 +350,8 @@ softpipe_set_constant_buffer(struct pipe_context *pipe,
    const void *data;
 
    if (cb && cb->user_buffer) {
-      constants = softpipe_user_buffer_create(pipe->screen, cb->user_buffer,
+      constants = softpipe_user_buffer_create(pipe->screen,
+                                              (void *) cb->user_buffer,
                                               cb->buffer_size,
                                               PIPE_BIND_CONSTANT_BUFFER);
    }




More information about the mesa-commit mailing list