summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChris Forbes <[email protected]>2013-10-13 12:39:47 +1300
committerChris Forbes <[email protected]>2013-10-22 18:56:14 +1300
commitc4de86fd26520f1bc5650c1f08a05fa0845dd881 (patch)
treef0cbcfffd26543ad251b8ddf35a1336eb44a7ca9 /src
parentb38af01ccfb76dc39baf4d65b663300d81f144a2 (diff)
i965/fs: Fix accidental type conversion in header setup
Previously one side could be UD while the other was float. V2: Prefer float; apparently IVB can dispatch float ops faster. (Thanks Eric) Signed-off-by: Chris Forbes <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_generator.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
index ed6130433b0..0e6e8533c73 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
@@ -524,14 +524,13 @@ fs_generator::generate_tex(fs_inst *inst, struct brw_reg dst, struct brw_reg src
header_reg = src;
} else {
assert(inst->base_mrf != -1);
- header_reg = retype(brw_message_reg(inst->base_mrf),
- BRW_REGISTER_TYPE_UD);
+ header_reg = brw_message_reg(inst->base_mrf);
}
brw_push_insn_state(p);
brw_set_mask_control(p, BRW_MASK_DISABLE);
brw_set_compression_control(p, BRW_COMPRESSION_NONE);
/* Explicitly set up the message header by copying g0 to the MRF. */
- brw_MOV(p, header_reg, retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_UD));
+ brw_MOV(p, header_reg, brw_vec8_grf(0, 0));
/* Then set the offset bits in DWord 2. */
brw_MOV(p, retype(brw_vec1_reg(header_reg.file,