diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-07-09 00:09:07 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-09 00:09:07 -0300 |
| commit | 59900d7f00b14681acfc7ef5e8d1e18d53664e1c (patch) | |
| tree | 7823b6bb6615ab21d194ba74de4f25181640a537 /Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs | |
| parent | b02719cf4173c0ca26e6d562424eba68965ce59c (diff) | |
Unscale textureSize when resolution scaling is used (#2441)
* Unscale textureSize when resolution scaling is used
* Fix textureSize on compute
* Flag texture size as needing res scale values too
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs b/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs index e9df6bfb..031c95a9 100644 --- a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs +++ b/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs @@ -37,7 +37,7 @@ namespace Ryujinx.Graphics.Gpu.Shader /// <summary> /// Version of the codegen (to be changed when codegen or guest format change). /// </summary> - private const ulong ShaderCodeGenVersion = 2412; + private const ulong ShaderCodeGenVersion = 2439; // Progress reporting helpers private volatile int _shaderCount; |
