diff options
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/CommandBufferPool.cs')
-rw-r--r-- | Ryujinx.Graphics.Vulkan/CommandBufferPool.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs b/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs index a27b63a0..c77b0040 100644 --- a/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs +++ b/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs @@ -71,8 +71,8 @@ namespace Ryujinx.Graphics.Vulkan { SType = StructureType.CommandPoolCreateInfo, QueueFamilyIndex = queueFamilyIndex, - Flags = CommandPoolCreateFlags.CommandPoolCreateTransientBit | - CommandPoolCreateFlags.CommandPoolCreateResetCommandBufferBit + Flags = CommandPoolCreateFlags.TransientBit | + CommandPoolCreateFlags.ResetCommandBufferBit }; api.CreateCommandPool(device, commandPoolCreateInfo, null, out _pool).ThrowOnError(); |