mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-12 07:36:59 +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…
Add table
Add a link
Reference in a new issue