diff options
author | bunnei <bunneidev@gmail.com> | 2022-09-06 03:20:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 03:20:54 +0200 |
commit | 4ffbbc534884841f9a5536e57539bf3d1642af26 (patch) | |
tree | 128d85b7223c376906ecb180d22e48e268a8c054 /src/shader_recompiler | |
parent | Merge pull request #8847 from german77/stop (diff) | |
parent | style: General style changes to match with the rest of the codebase (diff) | |
download | yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.gz yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.bz2 yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.lz yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.xz yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.zst yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.zip |
Diffstat (limited to 'src/shader_recompiler')
-rw-r--r-- | src/shader_recompiler/ir_opt/texture_pass.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/shader_recompiler/ir_opt/texture_pass.cpp b/src/shader_recompiler/ir_opt/texture_pass.cpp index 5cead5135..597112ba4 100644 --- a/src/shader_recompiler/ir_opt/texture_pass.cpp +++ b/src/shader_recompiler/ir_opt/texture_pass.cpp @@ -415,11 +415,11 @@ void TexturePass(Environment& env, IR::Program& program) { inst->SetFlags(flags); break; case IR::Opcode::ImageSampleImplicitLod: - if (flags.type == TextureType::Color2D) { - auto texture_type = ReadTextureType(env, cbuf); - if (texture_type == TextureType::Color2DRect) { - PatchImageSampleImplicitLod(*texture_inst.block, *texture_inst.inst); - } + if (flags.type != TextureType::Color2D) { + break; + } + if (ReadTextureType(env, cbuf) == TextureType::Color2DRect) { + PatchImageSampleImplicitLod(*texture_inst.block, *texture_inst.inst); } break; case IR::Opcode::ImageFetch: |