From 79b3243f54810eb7d449b739c8040af711c0a73c Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 31 May 2021 16:59:23 -0300 Subject: Do not attempt to normalize SNORM image buffers on shaders (#2317) * Do not attempt to normalize SNORM image buffers on shaders * Shader cache version bump --- Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.Gpu/Image') diff --git a/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs b/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs index ae610a76..d86d1203 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs @@ -365,7 +365,7 @@ namespace Ryujinx.Graphics.Gpu.Image } _context.Methods.BufferManager.SetBufferTextureStorage(hostTexture, texture.Range.GetSubRange(0).Address, texture.Size, bindingInfo, format, true); - } + } else if (isStore) { texture?.SignalModified(); -- cgit v1.2.3