diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-01-23 19:20:40 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 19:20:40 -0300 |
commit | 2fd819613ffcede43562b333602d17fa79c9751d (patch) | |
tree | 4c00f18a9ebfd356a6af8359cd86e9e5fec1509b /Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs | |
parent | ad6ff6ce99619bb320cc7517768bca603f11a75c (diff) |
SPIR-V: Change BitfieldExtract and BitfieldInsert for SPIRV-Cross (#4336)1.1.593
* SPIR-V: Change BitfieldExtract and BitfieldInsert types to make Metal MSL compiler happy
* Shader cache version bump
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 9f436502..dcd0eb70 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 = 4318; + private const uint CodeGenVersion = 4336; private const string SharedTocFileName = "shared.toc"; private const string SharedDataFileName = "shared.data"; |