aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2022-09-13 03:53:55 -0300
committerGitHub <noreply@github.com>2022-09-13 08:53:55 +0200
commit66f16f43921bdd6d0f706d09aa37166d374dec2e (patch)
treee3d9d8c67f3ccfa4ce13c2c43ba2ea6e0d160c00 /Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs
parent729ff5337cab8d1fd4cc66d7792d410172f25f62 (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.Shader/Instructions/InstEmitTexture.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs2
1 files changed, 1 insertions, 1 deletions
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
{