From 3ab5c23f492183ae6f5cf8f62c4239bf181d2630 Mon Sep 17 00:00:00 2001 From: gdk Date: Sat, 2 Nov 2019 23:07:21 -0300 Subject: Add partial support for array of samplers, and add pass to identify them from bindless texture accesses --- Ryujinx.Graphics.Gpu/Engine/Methods.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.Gpu/Engine/Methods.cs') diff --git a/Ryujinx.Graphics.Gpu/Engine/Methods.cs b/Ryujinx.Graphics.Gpu/Engine/Methods.cs index 5d156312..b1326ec5 100644 --- a/Ryujinx.Graphics.Gpu/Engine/Methods.cs +++ b/Ryujinx.Graphics.Gpu/Engine/Methods.cs @@ -670,7 +670,7 @@ namespace Ryujinx.Graphics.Gpu.Engine private static Target GetTarget(SamplerType type) { - type &= ~SamplerType.Shadow; + type &= ~(SamplerType.Indexed | SamplerType.Shadow); switch (type) { -- cgit v1.2.3