mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
pan/bi: Fix incorrectly flipped swizzle
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4883>
This commit is contained in:
parent
8415b3d552
commit
e14e3065a9
1 changed files with 2 additions and 2 deletions
|
|
@ -681,8 +681,8 @@ bi_pack_fmadd_min_f16(bi_instruction *ins, struct bi_registers *regs, bool FMA)
|
|||
.src0_neg = ins->src_neg[flip ? 1 : 0],
|
||||
.src1_neg = ins->src_neg[flip ? 0 : 1],
|
||||
.abs1 = l,
|
||||
.src0_swizzle = bi_swiz16(ins, 0),
|
||||
.src1_swizzle = bi_swiz16(ins, 1),
|
||||
.src0_swizzle = bi_swiz16(ins, flip ? 1 : 0),
|
||||
.src1_swizzle = bi_swiz16(ins, flip ? 0 : 1),
|
||||
.mode = ins->minmax,
|
||||
.op = op
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue