diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.cpp')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.cpp b/src/shader_recompiler/frontend/ir/opcodes.cpp new file mode 100644 index 000000000..24d024ad7 --- /dev/null +++ b/src/shader_recompiler/frontend/ir/opcodes.cpp | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | // Copyright 2021 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include <string_view> | ||
| 6 | |||
| 7 | #include "shader_recompiler/frontend/ir/opcodes.h" | ||
| 8 | |||
| 9 | namespace Shader::IR { | ||
| 10 | |||
| 11 | std::string_view NameOf(Opcode op) { | ||
| 12 | return Detail::META_TABLE[static_cast<size_t>(op)].name; | ||
| 13 | } | ||
| 14 | |||
| 15 | } // namespace Shader::IR | ||