From: Brian Paul Date: Fri, 21 Aug 2009 19:45:16 +0000 (-0600) Subject: softpipe: remove unneeded const qualifier X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46fbc872881081ffcf0b526f8c4a909fd915ad78;p=mesa.git softpipe: remove unneeded const qualifier --- diff --git a/src/gallium/drivers/softpipe/sp_state_fs.c b/src/gallium/drivers/softpipe/sp_state_fs.c index 3a453219235..a055d6295fe 100644 --- a/src/gallium/drivers/softpipe/sp_state_fs.c +++ b/src/gallium/drivers/softpipe/sp_state_fs.c @@ -128,7 +128,7 @@ softpipe_bind_vs_state(struct pipe_context *pipe, void *vs) { struct softpipe_context *softpipe = softpipe_context(pipe); - softpipe->vs = (const struct sp_vertex_shader *)vs; + softpipe->vs = (struct sp_vertex_shader *)vs; draw_bind_vertex_shader(softpipe->draw, (softpipe->vs ? softpipe->vs->draw_data : NULL));