mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-21 00:23:36 +00:00
14 lines
423 B
C#
14 lines
423 B
C#
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
static class VulkanConfiguration
|
|
{
|
|
public const bool UseDynamicState = true;
|
|
|
|
public const bool UseFastBufferUpdates = true;
|
|
public const bool UseGranularBufferTracking = true;
|
|
public const bool UseSlowSafeBlitOnAmd = true;
|
|
public const bool UsePushDescriptors = false;
|
|
|
|
public const bool ForceD24S8Unsupported = false;
|
|
}
|
|
}
|