summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_glsl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl.cpp')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl.cpp b/src/shader_recompiler/backend/glsl/emit_glsl.cpp
index d1c58cefc..e48f152d0 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl.cpp
@@ -146,7 +146,6 @@ void EmitCode(EmitContext& ctx, const IR::Program& program) {
146std::string EmitGLSL(const Profile& profile, const RuntimeInfo&, IR::Program& program, 146std::string EmitGLSL(const Profile& profile, const RuntimeInfo&, IR::Program& program,
147 Bindings& bindings) { 147 Bindings& bindings) {
148 EmitContext ctx{program, bindings, profile}; 148 EmitContext ctx{program, bindings, profile};
149 // ctx.SetupBuffers();
150 EmitCode(ctx, program); 149 EmitCode(ctx, program);
151 ctx.code += "}"; 150 ctx.code += "}";
152 return ctx.code; 151 return ctx.code;