From: Francisco Jerez Date: Thu, 4 Jun 2015 13:09:47 +0000 (+0300) Subject: i965/fs: Don't drop force_writemask_all and _sechalf when copying a CSE temporary. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e7069fbc701de68b65a876e1b4bfde4f111dd084;p=mesa.git i965/fs: Don't drop force_writemask_all and _sechalf when copying a CSE temporary. LOAD_PAYLOAD instructions need the same treatment as any other generator instructions, at least FB writes and typed surface messages will need a payload built with non-zero execution controls. Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_fs_cse.cpp b/src/mesa/drivers/dri/i965/brw_fs_cse.cpp index 3ddd17c7e3b..822a6a3a2f8 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_cse.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_cse.cpp @@ -206,9 +206,10 @@ create_copy_instr(fs_visitor *v, fs_inst *inst, fs_reg src, bool negate) copy = v->LOAD_PAYLOAD(inst->dst, payload, sources, header_size); } else { copy = v->MOV(inst->dst, src); - copy->force_writemask_all = inst->force_writemask_all; copy->src[0].negate = negate; } + copy->force_writemask_all = inst->force_writemask_all; + copy->force_sechalf = inst->force_sechalf; assert(copy->regs_written == written); return copy;