diff options
author | Brian <[email protected]> | 2008-11-23 19:15:15 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-11-23 19:15:15 -0700 |
commit | 0b9e96fae9493d5d58f046e01c983a3c4267090e (patch) | |
tree | b43b0b84df550adad8e09ba5d5890805fe4338d4 /src/gallium/drivers/softpipe/sp_fs_sse.c | |
parent | 4356d349ad8d048d19d795483b98103712c0103c (diff) |
softpipe: remove old/unneeded dependencies between TGSI exec and softpipe
Use tgsi_sampler struct as a base class. Softpipe subclasses it and adds
the fields it needs.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_fs_sse.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_fs_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_fs_sse.c b/src/gallium/drivers/softpipe/sp_fs_sse.c index 31908a517b7..9a273c87643 100644 --- a/src/gallium/drivers/softpipe/sp_fs_sse.c +++ b/src/gallium/drivers/softpipe/sp_fs_sse.c @@ -69,7 +69,7 @@ struct sp_sse_fragment_shader { static void fs_sse_prepare( const struct sp_fragment_shader *base, struct tgsi_exec_machine *machine, - struct tgsi_sampler *samplers ) + struct tgsi_sampler **samplers ) { } |