mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-22 09:03:36 +00:00
12 lines
312 B
C#
12 lines
312 B
C#
|
namespace Ryujinx.Graphics.Vulkan
|
|||
|
{
|
|||
|
static class VulkanConfiguration
|
|||
|
{
|
|||
|
public const bool UseDynamicState = true;
|
|||
|
|
|||
|
public const bool UseFastBufferUpdates = true;
|
|||
|
public const bool UseGranularBufferTracking = false;
|
|||
|
public const bool UseSlowSafeBlitOnAmd = true;
|
|||
|
}
|
|||
|
}
|