diff options
| author | 2021-05-28 01:34:27 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:34 -0400 | |
| commit | 627161c38e2ee986ea3cc9c7e46e09f54390d701 (patch) | |
| tree | 995495dac1967254c1020edf4bec60c960538e05 /src/shader_recompiler/ir_opt/texture_pass.cpp | |
| parent | shader: Adhere to disk shader cache setting (diff) | |
| download | yuzu-627161c38e2ee986ea3cc9c7e46e09f54390d701.tar.gz yuzu-627161c38e2ee986ea3cc9c7e46e09f54390d701.tar.xz yuzu-627161c38e2ee986ea3cc9c7e46e09f54390d701.zip | |
shader: Fix secondary textures
Diffstat (limited to 'src/shader_recompiler/ir_opt/texture_pass.cpp')
| -rw-r--r-- | src/shader_recompiler/ir_opt/texture_pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/ir_opt/texture_pass.cpp b/src/shader_recompiler/ir_opt/texture_pass.cpp index 9e0a2fb09..76cab04c2 100644 --- a/src/shader_recompiler/ir_opt/texture_pass.cpp +++ b/src/shader_recompiler/ir_opt/texture_pass.cpp | |||
| @@ -283,8 +283,8 @@ TextureInst MakeInst(Environment& env, IR::Block* block, IR::Inst& inst) { | |||
| 283 | } | 283 | } |
| 284 | 284 | ||
| 285 | TextureType ReadTextureType(Environment& env, const ConstBufferAddr& cbuf) { | 285 | TextureType ReadTextureType(Environment& env, const ConstBufferAddr& cbuf) { |
| 286 | const u32 secondary_index{cbuf.has_secondary ? cbuf.index : cbuf.secondary_index}; | 286 | const u32 secondary_index{cbuf.has_secondary ? cbuf.secondary_index : cbuf.index }; |
| 287 | const u32 secondary_offset{cbuf.has_secondary ? cbuf.offset : cbuf.secondary_offset}; | 287 | const u32 secondary_offset{cbuf.has_secondary ? cbuf.secondary_offset : cbuf.offset }; |
| 288 | const u32 lhs_raw{env.ReadCbufValue(cbuf.index, cbuf.offset)}; | 288 | const u32 lhs_raw{env.ReadCbufValue(cbuf.index, cbuf.offset)}; |
| 289 | const u32 rhs_raw{env.ReadCbufValue(secondary_index, secondary_offset)}; | 289 | const u32 rhs_raw{env.ReadCbufValue(secondary_index, secondary_offset)}; |
| 290 | return env.ReadTextureType(lhs_raw | rhs_raw); | 290 | return env.ReadTextureType(lhs_raw | rhs_raw); |