summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell
diff options
context:
space:
mode:
authorAndrea Pappacoda <andrea@pappacoda.it>2022-04-02 16:34:07 +0200
committerAndrea Pappacoda <andrea@pappacoda.it>2022-04-02 16:34:07 +0200
commit0c214cb5b9f209df5f0a00e4bde16f8d295b8301 (patch)
treebb1013e9543cc306d0425551eb0754b29b3694bb /src/shader_recompiler/frontend/maxwell
parentMerge pull request #8128 from FernandoS27/gc-fixes (diff)
downloadyuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.gz
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.bz2
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.lz
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.xz
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.zst
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.zip
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/texture_load.cpp2
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/texture_mipmap_level.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_load.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_load.cpp
index 57b4f0eee..60732215b 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_load.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_load.cpp
@@ -132,7 +132,7 @@ void Impl(TranslatorVisitor& v, u64 insn, bool is_bindless) {
multisample = v.X(meta_reg++);
}
if (tld.clamp != 0) {
- throw NotImplementedException("TLD.CL - CLAMP is not implmented");
+ throw NotImplementedException("TLD.CL - CLAMP is not implemented");
}
IR::TextureInstInfo info{};
info.type.Assign(GetType(tld.type));
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_mipmap_level.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_mipmap_level.cpp
index 311a9e763..f89ce1b68 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/texture_mipmap_level.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/texture_mipmap_level.cpp
@@ -81,7 +81,7 @@ void Impl(TranslatorVisitor& v, u64 insn, bool is_bindless) {
} const tmml{insn};
if ((tmml.mask & 0b1100) != 0) {
- throw NotImplementedException("TMML BA results are not implmented");
+ throw NotImplementedException("TMML BA results are not implemented");
}
const IR::Value coords{MakeCoords(v, tmml.coord_reg, tmml.type)};