diff options
author | José Fonseca <[email protected]> | 2008-02-24 02:16:28 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-24 02:23:12 +0900 |
commit | e9bb63c8e20361597463b2f7f88d84fe2770c8b9 (patch) | |
tree | 21029410d69a880e5a66961ab9fd34417f370543 /src/gallium/drivers/softpipe/sp_state.h | |
parent | 58a3d7dfd94453c25607106835fbbb3a54d42306 (diff) |
gallium: MSVC fixes.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state.h b/src/gallium/drivers/softpipe/sp_state.h index ef8cf67d4c3..6ff31e601ff 100644 --- a/src/gallium/drivers/softpipe/sp_state.h +++ b/src/gallium/drivers/softpipe/sp_state.h @@ -63,14 +63,14 @@ struct tgsi_exec_machine; struct sp_fragment_shader { struct pipe_shader_state shader; - void (*prepare)( struct sp_fragment_shader *shader, + void (*prepare)( const struct sp_fragment_shader *shader, struct tgsi_exec_machine *machine, struct tgsi_sampler *samplers); /* Run the shader - this interface will get cleaned up in the * future: */ - unsigned (*run)( struct sp_fragment_shader *shader, + unsigned (*run)( const struct sp_fragment_shader *shader, struct tgsi_exec_machine *machine, struct quad_header *quad ); |