blob: 596c0e176d2cd9bb8c64931d3a0deea8df463597 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.Graphics.Vulkan
{
static class VulkanConfiguration
{
public const bool UseFastBufferUpdates = true;
public const bool UseUnsafeBlit = true;
public const bool UsePushDescriptors = true;
public const bool ForceD24S8Unsupported = false;
public const bool ForceRGB16IntFloatUnsupported = false;
}
}
|