summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/emit_glasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm.cpp')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_glasm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm.cpp b/src/shader_recompiler/backend/glasm/emit_glasm.cpp
index a893fa3fb..edf6f5e13 100644
--- a/src/shader_recompiler/backend/glasm/emit_glasm.cpp
+++ b/src/shader_recompiler/backend/glasm/emit_glasm.cpp
@@ -312,8 +312,8 @@ std::string_view StageHeader(Stage stage) {
312} 312}
313} // Anonymous namespace 313} // Anonymous namespace
314 314
315std::string EmitGLASM(const Profile&, IR::Program& program, Bindings&) { 315std::string EmitGLASM(const Profile&, IR::Program& program, Bindings& bindings) {
316 EmitContext ctx{program}; 316 EmitContext ctx{program, bindings};
317 Precolor(ctx, program); 317 Precolor(ctx, program);
318 EmitCode(ctx, program); 318 EmitCode(ctx, program);
319 std::string header{StageHeader(program.stage)}; 319 std::string header{StageHeader(program.stage)};