mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-03-11 21:15:39 +00:00
Fix push descriptors bugfix logic for Intel Arc on Linux
This commit is contained in:
parent
5fb0b5e7ec
commit
1900924a78
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue