summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-03-26 01:54:03 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:24 +0200
commit981eb6f43bb88f1e57b4c657bf37cb7471a113e3 (patch)
treeed93c89e8167195dabce120f2dca32e39d3b296e
parentshader: Implement FragDepth (diff)
downloadyuzu-981eb6f43bb88f1e57b4c657bf37cb7471a113e3.tar
yuzu-981eb6f43bb88f1e57b4c657bf37cb7471a113e3.tar.gz
yuzu-981eb6f43bb88f1e57b4c657bf37cb7471a113e3.tar.bz2
yuzu-981eb6f43bb88f1e57b4c657bf37cb7471a113e3.tar.lz
yuzu-981eb6f43bb88f1e57b4c657bf37cb7471a113e3.tar.xz
yuzu-981eb6f43bb88f1e57b4c657bf37cb7471a113e3.tar.zst
yuzu-981eb6f43bb88f1e57b4c657bf37cb7471a113e3.zip
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/texture_fetch.cpp6
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/texture_gather.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_fetch.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_fetch.cpp
index d2626f3e7..1f1689c43 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_fetch.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_fetch.cpp
@@ -61,11 +61,11 @@ IR::Value MakeCoords(TranslatorVisitor& v, IR::Reg reg, TextureType type) {
case TextureType::_1D:
return v.F(reg);
case TextureType::ARRAY_1D:
- return v.ir.CompositeConstruct(read_array(), v.F(reg + 1));
+ return v.ir.CompositeConstruct(v.F(reg + 1), read_array());
case TextureType::_2D:
return v.ir.CompositeConstruct(v.F(reg), v.F(reg + 1));
case TextureType::ARRAY_2D:
- return v.ir.CompositeConstruct(read_array(), v.F(reg + 1), v.F(reg + 2));
+ return v.ir.CompositeConstruct(v.F(reg + 1), v.F(reg + 2), read_array());
case TextureType::_3D:
return v.ir.CompositeConstruct(v.F(reg), v.F(reg + 1), v.F(reg + 2));
case TextureType::ARRAY_3D:
@@ -73,7 +73,7 @@ IR::Value MakeCoords(TranslatorVisitor& v, IR::Reg reg, TextureType type) {
case TextureType::CUBE:
return v.ir.CompositeConstruct(v.F(reg), v.F(reg + 1), v.F(reg + 2));
case TextureType::ARRAY_CUBE:
- return v.ir.CompositeConstruct(read_array(), v.F(reg + 1), v.F(reg + 2), v.F(reg + 3));
+ return v.ir.CompositeConstruct(v.F(reg + 1), v.F(reg + 2), v.F(reg + 3), read_array());
}
throw NotImplementedException("Invalid texture type {}", type);
}
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_gather.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_gather.cpp
index d64865876..8c6384040 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_gather.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_gather.cpp
@@ -65,11 +65,11 @@ IR::Value MakeCoords(TranslatorVisitor& v, IR::Reg reg, TextureType type) {
case TextureType::_1D:
return v.F(reg);
case TextureType::ARRAY_1D:
- return v.ir.CompositeConstruct(read_array(), v.F(reg + 1));
+ return v.ir.CompositeConstruct(v.F(reg + 1), read_array());
case TextureType::_2D:
return v.ir.CompositeConstruct(v.F(reg), v.F(reg + 1));
case TextureType::ARRAY_2D:
- return v.ir.CompositeConstruct(read_array(), v.F(reg + 1), v.F(reg + 2));
+ return v.ir.CompositeConstruct(v.F(reg + 1), v.F(reg + 2), read_array());
case TextureType::_3D:
return v.ir.CompositeConstruct(v.F(reg), v.F(reg + 1), v.F(reg + 2));
case TextureType::ARRAY_3D:
@@ -77,7 +77,7 @@ IR::Value MakeCoords(TranslatorVisitor& v, IR::Reg reg, TextureType type) {
case TextureType::CUBE:
return v.ir.CompositeConstruct(v.F(reg), v.F(reg + 1), v.F(reg + 2));
case TextureType::ARRAY_CUBE:
- return v.ir.CompositeConstruct(read_array(), v.F(reg + 1), v.F(reg + 2), v.F(reg + 3));
+ return v.ir.CompositeConstruct(v.F(reg + 1), v.F(reg + 2), v.F(reg + 3), read_array());
}
throw NotImplementedException("Invalid texture type {}", type);
}