diff options
author | Marek Olšák <[email protected]> | 2010-04-11 01:13:11 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-04-11 01:32:15 +0200 |
commit | 1c356ac95b6df0962dbd15311ff7e0ea172e1aea (patch) | |
tree | e4d1090f383e3b232555b86b3aeb7fda585bed08 /src/gallium/drivers/r300/r300_fs.c | |
parent | 26a54ed6fddd42d8dba3d0c18d9d23ea63c62807 (diff) |
r300g: cleanup handling of sampler views
The evolution of TX_FORMAT bits is as follows:
* When a texture is created, set bits independent of pipe_format.
* When a sampler view is created, add format-specific bits.
* When sampler states and views are getting merged, add min/max LOD.
Diffstat (limited to 'src/gallium/drivers/r300/r300_fs.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_fs.c b/src/gallium/drivers/r300/r300_fs.c index b70bb51ba2d..0444e58f0dd 100644 --- a/src/gallium/drivers/r300/r300_fs.c +++ b/src/gallium/drivers/r300/r300_fs.c @@ -138,7 +138,7 @@ static void get_compare_state( memset(state, 0, sizeof(*state)); - for (int i = 0; i < texstate->sampler_count; i++) { + for (int i = 0; i < texstate->sampler_state_count; i++) { struct r300_sampler_state* s = texstate->sampler_states[i]; if (s && s->state.compare_mode == PIPE_TEX_COMPARE_R_TO_TEXTURE) { |