softpipe: remove unneeded const qualifier

This commit is contained in:
Brian Paul 2009-08-21 13:45:16 -06:00
parent a29447c33d
commit 46fbc87288
1 changed files with 1 additions and 1 deletions

View File

@ -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));