mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-13 01:24:30 +01:00
13 lines
367 B
C#
13 lines
367 B
C#
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
static class VulkanConfiguration
|
|
{
|
|
public const bool UseFastBufferUpdates = true;
|
|
public const bool UseUnsafeBlit = true;
|
|
public const bool UsePushDescriptors = false;
|
|
|
|
public const bool ForceD24S8Unsupported = false;
|
|
public const bool ForceRGB16IntFloatUnsupported = false;
|
|
}
|
|
}
|