diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-04-02 07:50:35 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-02 21:50:35 +1100 |
| commit | 524fe3bea4ddcb2587ebde06c803645a0bfcd5c2 (patch) | |
| tree | 21962e7b7e82fad191fe90fe589ece3aabffda36 /Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs | |
| parent | f2cdceb8461f032b77fa3516264cd9b3b1e7d627 (diff) | |
Implement shader HelperThreadNV (#2163)
* Implement shader HelperThreadNV
* Bump shader cache version
* Use gl_HelperInvocation since its supported across all vendors
* Nit
Diffstat (limited to 'Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs b/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs index dd3c8196..94487da0 100644 --- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs +++ b/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs @@ -15,7 +15,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl public static void Declare(CodeGenContext context, StructuredProgramInfo info) { - context.AppendLine("#version 440 core"); + context.AppendLine("#version 450 core"); context.AppendLine("#extension GL_ARB_gpu_shader_int64 : enable"); context.AppendLine("#extension GL_ARB_shader_ballot : enable"); context.AppendLine("#extension GL_ARB_shader_group_vote : enable"); |
