aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2021-11-08 12:57:28 -0300
committerGitHub <noreply@github.com>2021-11-08 12:57:28 -0300
commit3dee712164e635fd3a0d2e9d359a7d11a80bf675 (patch)
tree0c3cfbdb03ed7ce27740eea9008f6472b7787df4 /Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs
parentb7a1544e8b4e538272c491a746bdd19ec188a0c3 (diff)
Fix bindless/global memory elimination with inverted predicates (#2826)
* Fix bindless/global memory elimination with inverted predicates * Shader cache version bump
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs b/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs
index 67a397b3..4e1e130c 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 = 2822;
+ private const ulong ShaderCodeGenVersion = 2826;
// Progress reporting helpers
private volatile int _shaderCount;