diff options
| author | 2022-11-18 22:04:18 -0500 | |
|---|---|---|
| committer | 2022-11-18 22:04:18 -0500 | |
| commit | 9c67334031ba979db7e1596f9015b1c134c23876 (patch) | |
| tree | 3e89f99a0f3823d1eb76551719e5ffcbbb95b989 /src/shader_recompiler/backend/glasm/emit_glasm.cpp | |
| parent | Merge pull request #9234 from liamwhite/data-cash-money (diff) | |
| parent | shader: Implement miss attribute layer (diff) | |
| download | yuzu-9c67334031ba979db7e1596f9015b1c134c23876.tar.gz yuzu-9c67334031ba979db7e1596f9015b1c134c23876.tar.xz yuzu-9c67334031ba979db7e1596f9015b1c134c23876.zip | |
Merge pull request #9253 from vonchenplus/attr_layer
shader: Implement miss attribute layer
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm.cpp b/src/shader_recompiler/backend/glasm/emit_glasm.cpp index 3b0176bf6..0cb1e193e 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm.cpp | |||
| @@ -320,6 +320,7 @@ void SetupOptions(const IR::Program& program, const Profile& profile, | |||
| 320 | } | 320 | } |
| 321 | if (stage == Stage::Fragment) { | 321 | if (stage == Stage::Fragment) { |
| 322 | header += "OPTION ARB_draw_buffers;"; | 322 | header += "OPTION ARB_draw_buffers;"; |
| 323 | header += "OPTION ARB_fragment_layer_viewport;"; | ||
| 323 | } | 324 | } |
| 324 | } | 325 | } |
| 325 | 326 | ||