diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-02-16 04:10:22 -0300 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:22 -0400 |
commit | b5d7279d878211654b4abb165d94af763a365f47 (patch) | |
tree | 9b3a7b6e9d7d2b8945fe87d27ff75f1712ef06aa /src/shader_recompiler/frontend/ir/program.h | |
parent | d5d468cf2cbe235ee149dbd37951389d2a7e61da (diff) |
spirv: Initial bindings support
Diffstat (limited to 'src/shader_recompiler/frontend/ir/program.h')
-rw-r--r-- | src/shader_recompiler/frontend/ir/program.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/program.h b/src/shader_recompiler/frontend/ir/program.h index efaf1aa1eb..98aab2dc68 100644 --- a/src/shader_recompiler/frontend/ir/program.h +++ b/src/shader_recompiler/frontend/ir/program.h @@ -9,11 +9,13 @@ #include <boost/container/small_vector.hpp> #include "shader_recompiler/frontend/ir/function.h" +#include "shader_recompiler/shader_info.h" namespace Shader::IR { struct Program { boost::container::small_vector<Function, 1> functions; + Info info; }; [[nodiscard]] std::string DumpProgram(const Program& program); |