diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-10 04:14:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 04:14:47 +0100 |
commit | cbb289fbeeefabf3365c9c894f8d920110839be1 (patch) | |
tree | 8ae6d845c9e194bb0429d5a51046dbf16eb766a4 /src | |
parent | Merge pull request #9758 from german77/multi_audio (diff) | |
parent | glsl_emit_context: Remove redeclarations of gl_SampleID and gl_SampleMask (diff) | |
download | yuzu-cbb289fbeeefabf3365c9c894f8d920110839be1.tar yuzu-cbb289fbeeefabf3365c9c894f8d920110839be1.tar.gz yuzu-cbb289fbeeefabf3365c9c894f8d920110839be1.tar.bz2 yuzu-cbb289fbeeefabf3365c9c894f8d920110839be1.tar.lz yuzu-cbb289fbeeefabf3365c9c894f8d920110839be1.tar.xz yuzu-cbb289fbeeefabf3365c9c894f8d920110839be1.tar.zst yuzu-cbb289fbeeefabf3365c9c894f8d920110839be1.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/shader_recompiler/backend/glsl/glsl_emit_context.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/shader_recompiler/backend/glsl/glsl_emit_context.cpp b/src/shader_recompiler/backend/glsl/glsl_emit_context.cpp index 1b006e811..c3c2281bb 100644 --- a/src/shader_recompiler/backend/glsl/glsl_emit_context.cpp +++ b/src/shader_recompiler/backend/glsl/glsl_emit_context.cpp @@ -310,12 +310,6 @@ EmitContext::EmitContext(IR::Program& program, Bindings& bindings, const Profile if (runtime_info.force_early_z) { header += "layout(early_fragment_tests)in;"; } - if (info.uses_sample_id) { - header += "in int gl_SampleID;"; - } - if (info.stores_sample_mask) { - header += "out int gl_SampleMask[];"; - } break; case Stage::Compute: stage_name = "cs"; |