vulkan: Intel Arc on Linux also has the push descriptors bug.

This commit is contained in:
GreemDev
2025-10-01 13:03:22 -05:00
parent 8d0e28ed9d
commit 5fb0b5e7ec
2 changed files with 4 additions and 2 deletions

View File

@@ -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);
return gd.IsNvidiaPreTuring || (gd.IsIntelArc && (gd.IsIntelWindows && gd.IsIntelLinux));
}
private static bool CanUsePushDescriptors(VulkanRenderer gd, ResourceLayout layout, bool isCompute)