1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-03 21:42:56 -06:00
ryujinx/src/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs
2023-04-27 23:51:14 +02:00

13 lines
377 B
C#

namespace Ryujinx.Graphics.Vulkan
{
static class VulkanConfiguration
{
public const bool UseFastBufferUpdates = true;
public const bool UseSlowSafeBlitOnAmd = true;
public const bool UsePushDescriptors = false;
public const bool ForceD24S8Unsupported = false;
public const bool ForceRGB16IntFloatUnsupported = false;
}
}