diff options
| author | 2022-09-05 18:20:54 -0700 | |
|---|---|---|
| committer | 2022-09-05 18:20:54 -0700 | |
| commit | 4ffbbc534884841f9a5536e57539bf3d1642af26 (patch) | |
| tree | 128d85b7223c376906ecb180d22e48e268a8c054 /src/shader_recompiler/ir_opt/texture_pass.cpp | |
| 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.gz yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.xz yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.zip | |
Merge pull request #8837 from Morph1984/invalidate
(shader/pipeline)_cache: Raise shader/pipeline cache version
Diffstat (limited to 'src/shader_recompiler/ir_opt/texture_pass.cpp')
| -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) { | |||
| 415 | inst->SetFlags(flags); | 415 | inst->SetFlags(flags); |
| 416 | break; | 416 | break; |
| 417 | case IR::Opcode::ImageSampleImplicitLod: | 417 | case IR::Opcode::ImageSampleImplicitLod: |
| 418 | if (flags.type == TextureType::Color2D) { | 418 | if (flags.type != TextureType::Color2D) { |
| 419 | auto texture_type = ReadTextureType(env, cbuf); | 419 | break; |
| 420 | if (texture_type == TextureType::Color2DRect) { | 420 | } |
| 421 | PatchImageSampleImplicitLod(*texture_inst.block, *texture_inst.inst); | 421 | if (ReadTextureType(env, cbuf) == TextureType::Color2DRect) { |
| 422 | } | 422 | PatchImageSampleImplicitLod(*texture_inst.block, *texture_inst.inst); |
| 423 | } | 423 | } |
| 424 | break; | 424 | break; |
| 425 | case IR::Opcode::ImageFetch: | 425 | case IR::Opcode::ImageFetch: |