From c501fe264b7fc73f14a566e20d34efa5483f4c51 Mon Sep 17 00:00:00 2001 From: KeatonTheBot Date: Wed, 1 Oct 2025 15:30:02 -0500 Subject: [PATCH] Fix push descriptors bugfix logic for Intel Arc on Linux --- src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs b/src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs index 42f149b83..fb88118e5 100644 --- a/src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs +++ b/src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs @@ -160,7 +160,7 @@ namespace Ryujinx.Graphics.Vulkan private static bool HasPushDescriptorsBug(VulkanRenderer gd) { // Those GPUs/drivers do not work properly with push descriptors, so we must force disable them. - return gd.IsNvidiaPreTuring || (gd.IsIntelArc && (gd.IsIntelWindows && gd.IsIntelLinux)); + return gd.IsNvidiaPreTuring || (gd.IsIntelArc && (gd.IsIntelWindows || gd.IsIntelLinux)); } private static bool CanUsePushDescriptors(VulkanRenderer gd, ResourceLayout layout, bool isCompute)