diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-06-16 14:46:27 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-16 14:46:27 -0300 |
| commit | 3193ef10833bc0d27e2701c7759ab02674d672d3 (patch) | |
| tree | 8aae569f4943373450d181908f858cf03c0a0b42 /src/Ryujinx.Graphics.Gpu/Shader | |
| parent | 5a878ae9afe73d12bd344c139ee1b485335af3ff (diff) | |
Extend bindless elimination to catch a few more specific cases (#6921)
* Catch more cases on bindless elimination
* Match blocks with the same comparison condition
* Shader cache version bump
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Shader')
| -rw-r--r-- | src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs index fbf48f01..c4b5a138 100644 --- a/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs +++ b/src/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 = 6852; + private const uint CodeGenVersion = 6921; private const string SharedTocFileName = "shared.toc"; private const string SharedDataFileName = "shared.data"; |
