i965/eu: set execution size for SEND message in brw_send_indirect_message

Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
Iago Toral Quiroga 2015-12-03 11:10:12 +01:00 committed by Samuel Iglesias Gonsálvez
parent 2d6af62a0f
commit 31a8604252
1 changed files with 3 additions and 0 deletions

View File

@ -2563,6 +2563,9 @@ brw_send_indirect_message(struct brw_codegen *p,
brw_set_src1(p, send, addr);
}
if (dst.width < BRW_EXECUTE_8)
brw_inst_set_exec_size(devinfo, send, dst.width);
brw_set_dest(p, send, dst);
brw_set_src0(p, send, retype(payload, BRW_REGISTER_TYPE_UD));
brw_inst_set_sfid(devinfo, send, sfid);