mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-07 19:55:29 +00: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;
|
|
}
|
|
}
|