diff options
Diffstat (limited to 'src/shader_recompiler/ir_opt/constant_propagation_pass.cpp')
| -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) { | |||
| 440 | // DPdxFine | 440 | // DPdxFine |
| 441 | if (index.U32() == 1) { | 441 | if (index.U32() == 1) { |
| 442 | IR::IREmitter ir{block, IR::Block::InstructionList::s_iterator_to(inst)}; | 442 | IR::IREmitter ir{block, IR::Block::InstructionList::s_iterator_to(inst)}; |
| 443 | inst.ReplaceUsesWith(ir.DPdxFine(IR::F32{value_2})); | 443 | inst.ReplaceUsesWith(ir.DPdxFine(IR::F32{inst.Arg(1)})); |
| 444 | } | 444 | } |
| 445 | } else if (swizzle_value == 0xA5) { | 445 | } else if (swizzle_value == 0xA5) { |
| 446 | // DPdyFine | 446 | // DPdyFine |
| 447 | if (index.U32() == 2) { | 447 | if (index.U32() == 2) { |
| 448 | IR::IREmitter ir{block, IR::Block::InstructionList::s_iterator_to(inst)}; | 448 | IR::IREmitter ir{block, IR::Block::InstructionList::s_iterator_to(inst)}; |
| 449 | inst.ReplaceUsesWith(ir.DPdyFine(IR::F32{value_2})); | 449 | inst.ReplaceUsesWith(ir.DPdyFine(IR::F32{inst.Arg(1)})); |
| 450 | } | 450 | } |
| 451 | } | 451 | } |
| 452 | } | 452 | } |