From 66f16f43921bdd6d0f706d09aa37166d374dec2e Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 13 Sep 2022 03:53:55 -0300 Subject: Fix bindless 1D textures having a buffer type on the shader (#3697) * Fix bindless 1D textures having a buffer type on the shader * Shader cache version bump --- Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.Shader/Instructions') diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs b/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs index 4d20a5ce..c54b79cd 100644 --- a/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs +++ b/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs @@ -16,7 +16,7 @@ namespace Ryujinx.Graphics.Shader.Instructions { 0b0111, 0b1011, 0b1101, 0b1110, 0b1111, 0b0000, 0b0000, 0b0000 } }; - private const bool Sample1DAs2D = true; + public const bool Sample1DAs2D = true; private enum TexsType { -- cgit v1.2.3