aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/emit_context.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-20 02:18:52 -0300
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-22 21:51:32 -0400
commitdadd192b30d547dfa078057796a5ae16820eb4be (patch)
treeba7188229572a9001b6f49db53b4dd332e617ffb /src/shader_recompiler/backend/glasm/emit_context.h
parent3d0ffc6ad077174e2af9f3923fd99ced6f5e373b (diff)
glasm: Implement ImageRead
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_context.h')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_context.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_context.h b/src/shader_recompiler/backend/glasm/emit_context.h
index dd1f9ac9f0..d5bab48eae 100644
--- a/src/shader_recompiler/backend/glasm/emit_context.h
+++ b/src/shader_recompiler/backend/glasm/emit_context.h
@@ -60,7 +60,9 @@ public:
const Profile& profile;
std::vector<u32> texture_buffer_bindings;
+ std::vector<u32> image_buffer_bindings;
std::vector<u32> texture_bindings;
+ std::vector<u32> image_bindings;
Stage stage{};
std::string_view stage_name = "invalid";