diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-28 00:04:26 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:34 +0200 |
commit | fbf5cdcba0f3b03e8cd3019fb285a96037b05f26 (patch) | |
tree | cd880ac432ac309ef134e6b94544d0f2f8a47ab3 /src/shader_recompiler | |
parent | shader/exception: Fix compilation errors on gcc (diff) | |
download | yuzu-fbf5cdcba0f3b03e8cd3019fb285a96037b05f26.tar yuzu-fbf5cdcba0f3b03e8cd3019fb285a96037b05f26.tar.gz yuzu-fbf5cdcba0f3b03e8cd3019fb285a96037b05f26.tar.bz2 yuzu-fbf5cdcba0f3b03e8cd3019fb285a96037b05f26.tar.lz yuzu-fbf5cdcba0f3b03e8cd3019fb285a96037b05f26.tar.xz yuzu-fbf5cdcba0f3b03e8cd3019fb285a96037b05f26.tar.zst yuzu-fbf5cdcba0f3b03e8cd3019fb285a96037b05f26.zip |
Diffstat (limited to '')
-rw-r--r-- | src/shader_recompiler/ir_opt/constant_propagation_pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp index 66f1391db..796b4122d 100644 --- a/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp +++ b/src/shader_recompiler/ir_opt/constant_propagation_pass.cpp @@ -440,13 +440,13 @@ void FoldFSwizzleAdd(IR::Block& block, IR::Inst& inst) { // DPdxFine if (index.U32() == 1) { IR::IREmitter ir{block, IR::Block::InstructionList::s_iterator_to(inst)}; - inst.ReplaceUsesWith(ir.DPdxFine(IR::F32{value_2})); + inst.ReplaceUsesWith(ir.DPdxFine(IR::F32{inst.Arg(1)})); } } else if (swizzle_value == 0xA5) { // DPdyFine if (index.U32() == 2) { IR::IREmitter ir{block, IR::Block::InstructionList::s_iterator_to(inst)}; - inst.ReplaceUsesWith(ir.DPdyFine(IR::F32{value_2})); + inst.ReplaceUsesWith(ir.DPdyFine(IR::F32{inst.Arg(1)})); } } } |