summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_atom_blend.c
diff options
context:
space:
mode:
authorZack Rusin <zack@tungstengraphics.com>2007-09-17 07:56:56 -0400
committerZack Rusin <zack@tungstengraphics.com>2007-09-18 06:31:22 -0400
commite16c045b83f5c5b4f4064df67623bb76b46b6619 (patch)
tree9c38e12f21e6175ba7c2b81c4a551d8b1eae5808 /src/mesa/state_tracker/st_atom_blend.c
parent9780327c5d95586a88fce94d7b47342355ead118 (diff)
Implementing a better hash, removing state_tracker dependency from the cache.
Replacing mesa's main hash with one that handles collisions, moving state_tracker related caching to the state tracker to keep cso cache independent of it. Cleanups.
Diffstat (limited to 'src/mesa/state_tracker/st_atom_blend.c')
-rw-r--r--src/mesa/state_tracker/st_atom_blend.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_atom_blend.c b/src/mesa/state_tracker/st_atom_blend.c
index d007d50ad3..d94beb66c7 100644
--- a/src/mesa/state_tracker/st_atom_blend.c
+++ b/src/mesa/state_tracker/st_atom_blend.c
@@ -33,10 +33,11 @@
#include "st_context.h"
+#include "st_cache.h"
#include "st_atom.h"
+
#include "pipe/p_context.h"
#include "pipe/p_defines.h"
-#include "cso_cache/cso_cache.h"
/**
@@ -211,7 +212,7 @@ update_blend( struct st_context *st )
blend.dither = 1;
struct pipe_blend_state *real_blend =
- cso_cached_blend_state(st, &blend);
+ st_cached_blend_state(st, &blend);
if (st->state.blend != real_blend) {
/* state has changed */