From c4de86fd26520f1bc5650c1f08a05fa0845dd881 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 13 Oct 2013 12:39:47 +1300 Subject: [PATCH] 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 Reviewed-by: Eric Anholt --- src/mesa/drivers/dri/i965/brw_fs_generator.cpp | 5 ++--- 1 file 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 ed61304..0e6e853 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, -- 2.7.4