1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-30 11:36:46 -06:00
ryujinx/src/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs
gdkchan c5d9e67cb2
Fix some Vulkan validation errors (#5452)
* 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
2023-07-14 09:08:52 +02:00

13 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;
}
}