From b5752e16e82d4375171d157cb116a81ea025ea7b Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 30 Apr 2012 14:37:12 -0600 Subject: [PATCH] softpipe: cast away const to silence warning --- src/gallium/drivers/softpipe/sp_state_shader.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/softpipe/sp_state_shader.c b/src/gallium/drivers/softpipe/sp_state_shader.c index 4056d2d4444..910d4ba11a5 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); } -- 2.11.0