projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a29447c
)
softpipe: remove unneeded const qualifier
author
Brian Paul
<brianp@vmware.com>
Fri, 21 Aug 2009 19:45:16 +0000
(13:45 -0600)
committer
Brian Paul
<brianp@vmware.com>
Fri, 21 Aug 2009 19:45:16 +0000
(13:45 -0600)
src/gallium/drivers/softpipe/sp_state_fs.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/softpipe/sp_state_fs.c
b/src/gallium/drivers/softpipe/sp_state_fs.c
index 3a4532192354193c891aa722360db59a52c2f61a..a055d6295fedfe6ea45cfa1592f789e0cde4e1ac 100644
(file)
--- 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));