Ryujinx/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs

14 lines
369 B
C#
Raw Normal View History

2021-08-12 06:09:56 +00:00
namespace Ryujinx.Graphics.Vulkan
{
static class VulkanConfiguration
{
public const bool UseDynamicState = true;
public const bool UseFastBufferUpdates = true;
public const bool UseGranularBufferTracking = true;
2021-08-12 06:09:56 +00:00
public const bool UseSlowSafeBlitOnAmd = true;
2021-09-04 05:03:56 +00:00
public const bool ForceD24S8Unsupported = false;
2021-08-12 06:09:56 +00:00
}
}