blob: 75b45809dd041231f2c737f2801cd75fd37bdee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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;
}
}
|