diff options
| author | Connor Abbott <connor.w.abbott@intel.com> | 2015-08-03 17:43:41 -0700 |
|---|---|---|
| committer | Connor Abbott <cwabbott0@gmail.com> | 2015-11-01 03:18:08 -0500 |
| commit | 1b38ed4e53da1a6a3e4ca1d659ce52f159e16037 (patch) | |
| tree | 38e626cd11984e5647ba0111ae3891cd3f455783 | |
| parent | 594021f3e1a96c45ec061e3e377a85538398e070 (diff) | |
XXX remove exec size hack
| -rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu_emit.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c index b317f85182..4eb05f5802 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_emit.c +++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c @@ -198,13 +198,6 @@ brw_set_dest(struct brw_codegen *p, brw_inst *inst, struct brw_reg dest) brw_inst_set_dst_hstride(devinfo, inst, 1); } } - - /* Generators should set a default exec_size of either 8 (SIMD4x2 or SIMD8) - * or 16 (SIMD16), as that's normally correct. However, when dealing with - * small registers, we automatically reduce it to match the register size. - */ - if (dest.width < BRW_EXECUTE_8) - brw_inst_set_exec_size(devinfo, inst, dest.width); } extern int reg_type_size[]; |
