mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 22:10:11 +01:00
i965/fs: respect force_sechalf/force_writemask_all in CSE
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
b1a83b5d1b
commit
70171a9c89
1 changed files with 2 additions and 0 deletions
|
|
@ -210,6 +210,8 @@ create_copy_instr(const fs_builder &bld, fs_inst *inst, fs_reg src, bool negate)
|
|||
copy = bld.LOAD_PAYLOAD(inst->dst, payload, sources, header_size);
|
||||
} else {
|
||||
copy = bld.MOV(inst->dst, src);
|
||||
copy->force_sechalf = inst->force_sechalf;
|
||||
copy->force_writemask_all = inst->force_writemask_all;
|
||||
copy->src[0].negate = negate;
|
||||
}
|
||||
assert(copy->regs_written == written);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue