mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-10-16 06:05:08 +00:00
Fix push descriptors bugfix logic for Intel Arc on Linux
This commit is contained in:
parent
5fb0b5e7ec
commit
1900924a78
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user