summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/program.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-02-05 23:11:23 -0300
committerGravatar ameerj2021-07-22 21:51:21 -0400
commit16cb00c521cae6e93ec49d10e15b575b7bc4857e (patch)
tree3b283895510af56fced7e62031c6beda999c0a1c /src/shader_recompiler/frontend/ir/program.h
parentshader: Make typed IR (diff)
downloadyuzu-16cb00c521cae6e93ec49d10e15b575b7bc4857e.tar.gz
yuzu-16cb00c521cae6e93ec49d10e15b575b7bc4857e.tar.xz
yuzu-16cb00c521cae6e93ec49d10e15b575b7bc4857e.zip
shader: Add pools and rename files
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