mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-03 20:05:47 +00:00
Fix push descriptors bugfix logic for Intel Arc on Linux
This commit is contained in:
@@ -160,7 +160,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
private static bool HasPushDescriptorsBug(VulkanRenderer gd)
|
private static bool HasPushDescriptorsBug(VulkanRenderer gd)
|
||||||
{
|
{
|
||||||
// Those GPUs/drivers do not work properly with push descriptors, so we must force disable them.
|
// 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)
|
private static bool CanUsePushDescriptors(VulkanRenderer gd, ResourceLayout layout, bool isCompute)
|
||||||
|
|||||||
Reference in New Issue
Block a user