summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_state_fs.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-08-21 13:45:16 -0600
committerBrian Paul <brianp@vmware.com>2009-08-21 13:45:16 -0600
commit46fbc872881081ffcf0b526f8c4a909fd915ad78 (patch)
tree9b380e915bec08a265b9de24ce5d1c9309c32f54 /src/gallium/drivers/softpipe/sp_state_fs.c
parenta29447c33d44b3427e0c40a761067c0cc6e71c39 (diff)
softpipe: remove unneeded const qualifier
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state_fs.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_state_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_fs.c b/src/gallium/drivers/softpipe/sp_state_fs.c
index 3a45321923..a055d6295f 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));