diff options
| author | 2021-05-22 23:31:30 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:36 -0400 | |
| commit | cdde7302196d6642724d36e8ed5a523dce702b6b (patch) | |
| tree | 2700fc87a4762486b84cc73d783542d97bb6a96a /src/shader_recompiler/backend/glsl/emit_glsl.cpp | |
| parent | glsl: More FP fixes (diff) | |
| download | yuzu-cdde7302196d6642724d36e8ed5a523dce702b6b.tar.gz yuzu-cdde7302196d6642724d36e8ed5a523dce702b6b.tar.xz yuzu-cdde7302196d6642724d36e8ed5a523dce702b6b.zip | |
glsl: Add a more robust fp formatter
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/glsl/emit_glsl.cpp | 1 |
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) { | |||
| 146 | std::string EmitGLSL(const Profile& profile, const RuntimeInfo&, IR::Program& program, | 146 | std::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; |