summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-28 06:36:25 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:34 +0200
commit457dda69ccdec4002e794ad1a810b577af66f79f (patch)
tree9e9b9afe2eb5e024174f7a45d7948288daaea5d2
parentshader: Fix secondary textures (diff)
downloadyuzu-457dda69ccdec4002e794ad1a810b577af66f79f.tar
yuzu-457dda69ccdec4002e794ad1a810b577af66f79f.tar.gz
yuzu-457dda69ccdec4002e794ad1a810b577af66f79f.tar.bz2
yuzu-457dda69ccdec4002e794ad1a810b577af66f79f.tar.lz
yuzu-457dda69ccdec4002e794ad1a810b577af66f79f.tar.xz
yuzu-457dda69ccdec4002e794ad1a810b577af66f79f.tar.zst
yuzu-457dda69ccdec4002e794ad1a810b577af66f79f.zip
-rw-r--r--src/shader_recompiler/ir_opt/texture_pass.cpp4
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 76cab04c2..e9098239d 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) {
}
TextureType ReadTextureType(Environment& env, const ConstBufferAddr& cbuf) {
- const u32 secondary_index{cbuf.has_secondary ? cbuf.secondary_index : cbuf.index };
- const u32 secondary_offset{cbuf.has_secondary ? cbuf.secondary_offset : cbuf.offset };
+ const u32 secondary_index{cbuf.has_secondary ? cbuf.secondary_index : cbuf.index};
+ const u32 secondary_offset{cbuf.has_secondary ? cbuf.secondary_offset : cbuf.offset};
const u32 lhs_raw{env.ReadCbufValue(cbuf.index, cbuf.offset)};
const u32 rhs_raw{env.ReadCbufValue(secondary_index, secondary_offset)};
return env.ReadTextureType(lhs_raw | rhs_raw);