diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-06-25 19:56:03 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-25 19:56:03 -0300 |
| commit | 493648df312b7501b0560a3c94b2deffab2e99cf (patch) | |
| tree | ea7a3c54df2bc8a4687deb0bcc08408f8da331dd /Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs | |
| parent | ed2f5ede0f8d8f58390745f5e237bbfea36397fe (diff) | |
Fix default value for unwritten shader outputs (#2412)
* Fix shader default output values
* Shader cache version bump
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 6813a440..72ae0b10 100644 --- a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs +++ b/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs @@ -36,7 +36,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 = 2404; + private const ulong ShaderCodeGenVersion = 2412; // Progress reporting helpers private volatile int _shaderCount; |
