summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/glasm/emit_context.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-20 07:18:52 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:32 +0200
commitdadd192b30d547dfa078057796a5ae16820eb4be (patch)
treeba7188229572a9001b6f49db53b4dd332e617ffb /src/shader_recompiler/backend/glasm/emit_context.h
parentglasm: Implement EmitVertex and EndPrimitive (diff)
downloadyuzu-dadd192b30d547dfa078057796a5ae16820eb4be.tar
yuzu-dadd192b30d547dfa078057796a5ae16820eb4be.tar.gz
yuzu-dadd192b30d547dfa078057796a5ae16820eb4be.tar.bz2
yuzu-dadd192b30d547dfa078057796a5ae16820eb4be.tar.lz
yuzu-dadd192b30d547dfa078057796a5ae16820eb4be.tar.xz
yuzu-dadd192b30d547dfa078057796a5ae16820eb4be.tar.zst
yuzu-dadd192b30d547dfa078057796a5ae16820eb4be.zip
Diffstat (limited to '')
-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 dd1f9ac9f..d5bab48ea 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";