diff options
| author | 2021-04-03 02:28:44 +0200 | |
|---|---|---|
| committer | 2021-07-22 21:51:26 -0400 | |
| commit | 80df541a0860eecc599f60a7b2955e1e286bc48a (patch) | |
| tree | 5905c32d0238178cfeb5e05dc36ec431bc9b8c13 /src/shader_recompiler/frontend/maxwell | |
| parent | vk_pipeline_cache: Small fixes to the pipeline cache (diff) | |
| download | yuzu-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.cpp | 2 |
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 | ||
| 185 | void TranslatorVisitor::NOP(u64) { | 185 | void TranslatorVisitor::NOP(u64) { |
| 186 | ThrowNotImplemented(Opcode::NOP); | 186 | // NOP is No-Op. |
| 187 | } | 187 | } |
| 188 | 188 | ||
| 189 | void TranslatorVisitor::OUT_reg(u64) { | 189 | void TranslatorVisitor::OUT_reg(u64) { |