diff options
author | Marek Olšák <[email protected]> | 2010-02-28 19:28:31 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-02-28 19:30:39 +0100 |
commit | d2ac3d5e79bdf5a32a2dca135403d963ac6c83e4 (patch) | |
tree | b085f2a15561c80d66c54b768ff21ce1ee950233 /src/gallium/drivers/r300/r300_fs.c | |
parent | 942762cd973af0df75040de21d3321cd19829e70 (diff) |
r300g: atomize texture and sampler states
Diffstat (limited to 'src/gallium/drivers/r300/r300_fs.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_fs.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_fs.c b/src/gallium/drivers/r300/r300_fs.c index ae4c62b2f1d..3c2625269b8 100644 --- a/src/gallium/drivers/r300/r300_fs.c +++ b/src/gallium/drivers/r300/r300_fs.c @@ -133,10 +133,13 @@ static void get_compare_state( struct r300_fragment_program_external_state* state, unsigned shadow_samplers) { + struct r300_textures_state *texstate = + (struct r300_textures_state*)r300->textures_state.state; + memset(state, 0, sizeof(*state)); - for (int i = 0; i < r300->sampler_count; i++) { - struct r300_sampler_state* s = r300->sampler_states[i]; + for (int i = 0; i < texstate->sampler_count; i++) { + struct r300_sampler_state* s = texstate->sampler_states[i]; if (s && s->state.compare_mode == PIPE_TEX_COMPARE_R_TO_TEXTURE) { /* XXX Gallium doesn't provide us with any information regarding |