mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-11 06:22:01 +00:00
c5d9e67cb2
* Fix some validation errors and silence the annoying pipeline barrier error * Remove bogus decref/incref on index buffer state * Make unsafe blit opt-in rather than opt-out * Remove Vulkan debugger messages blacklist * Adjust GetImageUsage to not set the storage bit for multisample textures if not supported
12 lines
370 B
C#
12 lines
370 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;
|
|
}
|
|
}
|