diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-11-08 11:39:30 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-08 11:39:30 -0300 |
| commit | b7a1544e8b4e538272c491a746bdd19ec188a0c3 (patch) | |
| tree | b325765ccd98613cb63350cb4d66bb19db38f0db /Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs | |
| parent | 81e9b86cdb4b2a01cc41b8e8a4dff2c9e3c13843 (diff) | |
Fix InvocationInfo on geometry shader and bindless default integer const (#2822)
* Fix InvocationInfo on geometry shader and bindless default integer const
* Shader cache version bump
* Consistency for the default value
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs b/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs index be5e7ab9..67a397b3 100644 --- a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs +++ b/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs @@ -40,7 +40,7 @@ namespace Ryujinx.Graphics.Gpu.Shader /// <summary> /// Version of the codegen (to be changed when codegen or guest format change). /// </summary> - private const ulong ShaderCodeGenVersion = 2768; + private const ulong ShaderCodeGenVersion = 2822; // Progress reporting helpers private volatile int _shaderCount; |
