diff options
author | Kenneth Graunke <[email protected]> | 2013-09-09 15:32:26 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-09-09 15:33:16 -0700 |
commit | 0bb3cd8090c0897f695008aede5d5a2322d7af42 (patch) | |
tree | 67716f66e3b3ece6839ff2fd8e8f5b012636de7d | |
parent | 89f5f675ad27bd485d1c1be654ca10c49321957f (diff) |
Revert "i965/vec4: Only zero out unused message components when there are any."
This reverts commit 6c3db2167c64ecf2366862f15f8e2d4a91f1028c, which I
accidentally pushed along with other code. A better version of the fix
will be committed later.
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp index 7ced32c6e8b..28dc313e431 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp @@ -2251,10 +2251,8 @@ vec4_visitor::visit(ir_texture *ir) emit(MOV(dst_reg(MRF, param_base, ir->coordinate->type, coord_mask), coordinate)); } - if (zero_mask != 0) { - emit(MOV(dst_reg(MRF, param_base, ir->coordinate->type, zero_mask), - src_reg(0))); - } + emit(MOV(dst_reg(MRF, param_base, ir->coordinate->type, zero_mask), + src_reg(0))); /* Load the shadow comparitor */ if (ir->shadow_comparitor && ir->op != ir_txd) { emit(MOV(dst_reg(MRF, param_base + 1, ir->shadow_comparitor->type, |