mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-30 23:28:06 +02:00
intel/eu: Set the right subnr for ALIGN16 destinations
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5596>
This commit is contained in:
parent
8a0d772dca
commit
e0ab48e3ea
1 changed files with 1 additions and 1 deletions
|
|
@ -890,7 +890,7 @@ brw_alu3(struct brw_codegen *p, unsigned opcode, struct brw_reg dest,
|
|||
dest.file == BRW_MESSAGE_REGISTER_FILE);
|
||||
}
|
||||
brw_inst_set_3src_dst_reg_nr(devinfo, inst, dest.nr);
|
||||
brw_inst_set_3src_a16_dst_subreg_nr(devinfo, inst, dest.subnr / 16);
|
||||
brw_inst_set_3src_a16_dst_subreg_nr(devinfo, inst, dest.subnr / 4);
|
||||
brw_inst_set_3src_a16_dst_writemask(devinfo, inst, dest.writemask);
|
||||
|
||||
assert(src0.file == BRW_GENERAL_REGISTER_FILE);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue