summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_state_derived.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-01-18 09:57:52 -0700
committerBrian Paul <brianp@vmware.com>2011-01-18 09:59:28 -0700
commitc97e4532bb517e52c09ce15246423fc861c13ea3 (patch)
tree6f248814cadfc75ea01dc88165b4b79197dd3f83 /src/gallium/drivers/softpipe/sp_state_derived.c
parent843f537cfbf988647fec5a2aa584d5f817e8acd3 (diff)
softpipe: s/tex_cache/fragment_tex_cache/
Just to be more consistant with the vertex and geometry tex cache fields.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state_derived.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_state_derived.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_derived.c b/src/gallium/drivers/softpipe/sp_state_derived.c
index bf4c12701a..f65bf9a77b 100644
--- a/src/gallium/drivers/softpipe/sp_state_derived.c
+++ b/src/gallium/drivers/softpipe/sp_state_derived.c
@@ -200,7 +200,7 @@ update_tgsi_samplers( struct softpipe_context *softpipe )
softpipe_reset_sampler_variants( softpipe );
for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
- struct softpipe_tex_tile_cache *tc = softpipe->tex_cache[i];
+ struct softpipe_tex_tile_cache *tc = softpipe->fragment_tex_cache[i];
if (tc->texture) {
struct softpipe_resource *spt = softpipe_resource(tc->texture);
if (spt->timestamp != tc->timestamp) {