diff options
author | Keith Whitwell <[email protected]> | 2008-05-01 18:49:07 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-05-01 20:49:44 +0100 |
commit | f30285e99c1e158971855b12331df3da38555004 (patch) | |
tree | 53fd259894a8eeed86f94b1995d19ff683fceeb7 /src/gallium/drivers/softpipe | |
parent | 0000792a2006a2c8fde1b54d070490a625fb8435 (diff) |
softpipe: fix warning
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_fs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_fs.c b/src/gallium/drivers/softpipe/sp_state_fs.c index 2921066ce36..9e77b7e91bc 100644 --- a/src/gallium/drivers/softpipe/sp_state_fs.c +++ b/src/gallium/drivers/softpipe/sp_state_fs.c @@ -82,10 +82,9 @@ softpipe_bind_fs_state(struct pipe_context *pipe, void *fs) void softpipe_delete_fs_state(struct pipe_context *pipe, void *fs) { - struct softpipe_context *softpipe = softpipe_context(pipe); struct sp_fragment_shader *state = fs; - assert(fs != softpipe->fs); + assert(fs != softpipe_context(pipe)->fs); state->delete( state ); } |