mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 03:50:13 +01:00
nak: Fix copy-prop for OpPLop3 sources
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26181>
This commit is contained in:
parent
a65518b625
commit
ea453b373d
1 changed files with 2 additions and 2 deletions
|
|
@ -389,13 +389,13 @@ impl CopyPropPass {
|
|||
self.add_copy(
|
||||
dst,
|
||||
SrcType::Pred,
|
||||
lop.srcs[i],
|
||||
lop.srcs[s],
|
||||
);
|
||||
} else if op.lut == !LogicOp::SRC_MASKS[s] {
|
||||
self.add_copy(
|
||||
dst,
|
||||
SrcType::Pred,
|
||||
lop.srcs[i].bnot(),
|
||||
lop.srcs[s].bnot(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue