diff options
author | gdkchan <gab.dark.100@gmail.com> | 2022-09-13 03:53:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 08:53:55 +0200 |
commit | 66f16f43921bdd6d0f706d09aa37166d374dec2e (patch) | |
tree | e3d9d8c67f3ccfa4ce13c2c43ba2ea6e0d160c00 /Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs | |
parent | 729ff5337cab8d1fd4cc66d7792d410172f25f62 (diff) |
Fix bindless 1D textures having a buffer type on the shader (#3697)1.1.267
* Fix bindless 1D textures having a buffer type on the shader
* 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 d257c193..24b05b90 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 = 3644; + private const uint CodeGenVersion = 3697; private const string SharedTocFileName = "shared.toc"; private const string SharedDataFileName = "shared.data"; |