diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-09-18 15:48:55 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-18 15:48:55 -0300 |
| commit | ef81658fbd5b2aa23bf7e71b22a636da9a16c67b (patch) | |
| tree | 162068fa579f06f78db9528a5da51627a2e5867c /src/Ryujinx.Graphics.Gpu/Shader | |
| parent | 062ef43eb46ffec0ddc441907d38da3cfc235f09 (diff) | |
Implement support for shader ATOM.EXCH instruction (#7320)
* Implement support for shader ATOM.EXCH instruction
* Shader cache version bump
* Check type
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 c1f59201..e1e696ca 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 = 7131; + private const uint CodeGenVersion = 7320; private const string SharedTocFileName = "shared.toc"; private const string SharedDataFileName = "shared.data"; |
