summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/maxwell
diff options
context:
space:
mode:
authorGravatar FernandoS272021-04-03 02:28:44 +0200
committerGravatar ameerj2021-07-22 21:51:26 -0400
commit80df541a0860eecc599f60a7b2955e1e286bc48a (patch)
tree5905c32d0238178cfeb5e05dc36ec431bc9b8c13 /src/shader_recompiler/frontend/maxwell
parentvk_pipeline_cache: Small fixes to the pipeline cache (diff)
downloadyuzu-80df541a0860eecc599f60a7b2955e1e286bc48a.tar.gz
yuzu-80df541a0860eecc599f60a7b2955e1e286bc48a.tar.xz
yuzu-80df541a0860eecc599f60a7b2955e1e286bc48a.zip
shader: "Implement" NOP
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp
index 80a6ed578..acabb0118 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp
@@ -183,7 +183,7 @@ void TranslatorVisitor::LONGJMP(u64) {
183} 183}
184 184
185void TranslatorVisitor::NOP(u64) { 185void TranslatorVisitor::NOP(u64) {
186 ThrowNotImplemented(Opcode::NOP); 186 // NOP is No-Op.
187} 187}
188 188
189void TranslatorVisitor::OUT_reg(u64) { 189void TranslatorVisitor::OUT_reg(u64) {