summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/program.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/ir/program.h')
-rw-r--r--src/shader_recompiler/frontend/ir/program.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/program.h b/src/shader_recompiler/frontend/ir/program.h
new file mode 100644
index 000000000..efaf1aa1e
--- /dev/null
+++ b/src/shader_recompiler/frontend/ir/program.h
@@ -0,0 +1,21 @@
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 <boost/container/small_vector.hpp>
10
11#include "shader_recompiler/frontend/ir/function.h"
12
13namespace Shader::IR {
14
15struct Program {
16 boost::container::small_vector<Function, 1> functions;
17};
18
19[[nodiscard]] std::string DumpProgram(const Program& program);
20
21} // namespace Shader::IR