Fix flashing issue in games

This commit is contained in:
Stossy11 2024-12-08 23:02:02 +11:00
parent 658bdd7bec
commit 6a45d469db
4 changed files with 13 additions and 8 deletions

View file

@ -106,7 +106,7 @@ namespace Ryujinx.Graphics.Vulkan
SupportsExtendedDynamicState = supportsExtendedDynamicState;
SupportsMultiView = supportsMultiView;
SupportsNullDescriptors = (OperatingSystem.IsIOS() ? false : supportsNullDescriptors);
SupportsPushDescriptors = supportsPushDescriptors;
SupportsPushDescriptors = (OperatingSystem.IsIOS() ? false : supportsNullDescriptors);
SupportsPrimitiveTopologyListRestart = supportsPrimitiveTopologyListRestart;
SupportsPrimitiveTopologyPatchListRestart = supportsPrimitiveTopologyPatchListRestart;
SupportsTransformFeedback = supportsTransformFeedback;