diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-10-24 20:46:36 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-10-24 20:46:36 +0200 |
commit | e5291e2031e1a7e0f86aa060eb12533f3dd73eaf (patch) | |
tree | 618caaad12825ab10202b359e31fa3c936612d98 /src/shader_recompiler/ir_opt/texture_pass.cpp | |
parent | Merge pull request #7070 from FernandoS27/want-you-bad (diff) | |
download | yuzu-e5291e2031e1a7e0f86aa060eb12533f3dd73eaf.tar yuzu-e5291e2031e1a7e0f86aa060eb12533f3dd73eaf.tar.gz yuzu-e5291e2031e1a7e0f86aa060eb12533f3dd73eaf.tar.bz2 yuzu-e5291e2031e1a7e0f86aa060eb12533f3dd73eaf.tar.lz yuzu-e5291e2031e1a7e0f86aa060eb12533f3dd73eaf.tar.xz yuzu-e5291e2031e1a7e0f86aa060eb12533f3dd73eaf.tar.zst yuzu-e5291e2031e1a7e0f86aa060eb12533f3dd73eaf.zip |
Diffstat (limited to 'src/shader_recompiler/ir_opt/texture_pass.cpp')
-rw-r--r-- | src/shader_recompiler/ir_opt/texture_pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/ir_opt/texture_pass.cpp b/src/shader_recompiler/ir_opt/texture_pass.cpp index 225c238fb..96c997a58 100644 --- a/src/shader_recompiler/ir_opt/texture_pass.cpp +++ b/src/shader_recompiler/ir_opt/texture_pass.cpp @@ -492,7 +492,7 @@ void TexturePass(Environment& env, IR::Program& program) { const auto insert_point{IR::Block::InstructionList::s_iterator_to(*inst)}; IR::IREmitter ir{*texture_inst.block, insert_point}; const IR::U32 shift{ir.Imm32(std::countr_zero(DESCRIPTOR_SIZE))}; - inst->SetArg(0, ir.SMin(ir.ShiftRightArithmetic(cbuf.dynamic_offset, shift), + inst->SetArg(0, ir.UMin(ir.ShiftRightArithmetic(cbuf.dynamic_offset, shift), ir.Imm32(DESCRIPTOR_SIZE - 1))); } else { inst->SetArg(0, IR::Value{}); |