summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_state_derived.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-08-23 10:23:46 +0100
committerKeith Whitwell <keithw@vmware.com>2009-08-23 10:23:46 +0100
commit7670102468a55de50cf0cfa0b938d36aaf212f1f (patch)
treee45cf5fba528902060e0b5e258087e0de69cfc58 /src/gallium/drivers/softpipe/sp_state_derived.c
parent0f24886f922df3e00094a53b5b37b1588ea84bc0 (diff)
parentc84abe36a93312cfa061ce1bd005e43eb9f6a6df (diff)
Merge branch 'tex-tilecache' into softpipe-opt
Conflicts: src/gallium/drivers/softpipe/sp_state_derived.c src/gallium/drivers/softpipe/sp_state_sampler.c src/gallium/drivers/softpipe/sp_tex_sample.c src/gallium/drivers/softpipe/sp_tex_sample.h src/gallium/drivers/softpipe/sp_tile_cache.c
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state_derived.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_state_derived.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_derived.c b/src/gallium/drivers/softpipe/sp_state_derived.c
index 202a2bc94c..04fc125e3d 100644
--- a/src/gallium/drivers/softpipe/sp_state_derived.c
+++ b/src/gallium/drivers/softpipe/sp_state_derived.c
@@ -35,7 +35,7 @@
#include "sp_screen.h"
#include "sp_state.h"
#include "sp_texture.h"
-#include "sp_tile_cache.h"
+#include "sp_tex_tile_cache.h"
/**
@@ -203,11 +203,11 @@ update_tgsi_samplers( struct softpipe_context *softpipe )
softpipe_reset_sampler_varients( softpipe );
for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
- struct softpipe_tile_cache *tc = softpipe->tex_cache[i];
+ struct softpipe_tex_tile_cache *tc = softpipe->tex_cache[i];
if (tc->texture) {
struct softpipe_texture *spt = softpipe_texture(tc->texture);
if (spt->timestamp != tc->timestamp) {
- sp_tile_cache_validate_texture( tc );
+ sp_tex_tile_cache_validate_texture( tc );
_debug_printf("INV %d %d\n", tc->timestamp, spt->timestamp);
tc->timestamp = spt->timestamp;
}