diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-01-21 12:18:05 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-21 12:18:05 -0300 |
commit | 6adf15e479b684cad7a783e7a1a056be087fdc02 (patch) | |
tree | 857c8b14af4e49c2aa939b1496d7f53f304247bb /Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs | |
parent | 2747f125918951673b298964889276ded5de935d (diff) |
Implement CSET and CSETP shader instructions (#4318)1.1.583
* Implement CSET and CSETP shader instructions
* Shader cache version bump
* Fix CC.HI
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs b/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs index 2622ea3e..9f436502 100644 --- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs +++ b/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs @@ -22,7 +22,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache private const ushort FileFormatVersionMajor = 1; private const ushort FileFormatVersionMinor = 2; private const uint FileFormatVersionPacked = ((uint)FileFormatVersionMajor << 16) | FileFormatVersionMinor; - private const uint CodeGenVersion = 3939; + private const uint CodeGenVersion = 4318; private const string SharedTocFileName = "shared.toc"; private const string SharedDataFileName = "shared.data"; |