summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965simple/brw_wm.c
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@tungstengraphics.com>2008-03-28 15:43:00 +0100
committerRoland Scheidegger <sroland@tungstengraphics.com>2008-03-28 15:43:00 +0100
commit5615ab78b03cf1cb5fb19fc04fef52818f91b0be (patch)
tree29e9feb808cda826fa9ea656582ad41cffff2ad9 /src/gallium/drivers/i965simple/brw_wm.c
parent4e7bcaa4c20cc358206cf4668316f998d79c85b0 (diff)
gallium: remove redundant compare bit in sampler state
Diffstat (limited to 'src/gallium/drivers/i965simple/brw_wm.c')
-rw-r--r--src/gallium/drivers/i965simple/brw_wm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/i965simple/brw_wm.c b/src/gallium/drivers/i965simple/brw_wm.c
index 1c4b5b5ede..7fc5f59a98 100644
--- a/src/gallium/drivers/i965simple/brw_wm.c
+++ b/src/gallium/drivers/i965simple/brw_wm.c
@@ -161,8 +161,7 @@ static void brw_wm_populate_key( struct brw_context *brw,
if (unit) {
- if (unit->compare &&
- unit->compare_mode == PIPE_TEX_COMPARE_R_TO_TEXTURE) {
+ if (unit->compare_mode == PIPE_TEX_COMPARE_R_TO_TEXTURE) {
key->shadowtex_mask |= 1<<i;
}
if (t->Image[0][t->BaseLevel]->InternalFormat == GL_YCBCR_MESA)