diff options
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm.h')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm.h b/src/shader_recompiler/backend/glasm/emit_glasm.h new file mode 100644 index 000000000..a0dfdd818 --- /dev/null +++ b/src/shader_recompiler/backend/glasm/emit_glasm.h | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | // Copyright 2021 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <string> | ||
| 8 | |||
| 9 | #include "shader_recompiler/backend/bindings.h" | ||
| 10 | #include "shader_recompiler/frontend/ir/program.h" | ||
| 11 | #include "shader_recompiler/profile.h" | ||
| 12 | |||
| 13 | namespace Shader::Backend::GLASM { | ||
| 14 | |||
| 15 | [[nodiscard]] std::string EmitGLASM(const Profile& profile, IR::Program& program, | ||
| 16 | Bindings& binding); | ||
| 17 | |||
| 18 | [[nodiscard]] inline std::string EmitGLASM(const Profile& profile, IR::Program& program) { | ||
| 19 | Bindings binding; | ||
| 20 | return EmitGLASM(profile, program, binding); | ||
| 21 | } | ||
| 22 | |||
| 23 | } // namespace Shader::Backend::GLASM | ||