vulkan: Remove CreateCommandBufferPool from VulkanInitialization (#4606)

It was only called in one place, that can be simplified.
This commit is contained in:
Mary
2023-03-27 02:16:31 +00:00
committed by GitHub
parent f659dcb9d8
commit f0a3dff136
2 changed files with 1 additions and 6 deletions
+1 -1
View File
@@ -320,7 +320,7 @@ namespace Ryujinx.Graphics.Vulkan
MemoryAllocator = new MemoryAllocator(Api, _physicalDevice, _device, properties.Limits.MaxMemoryAllocationCount);
CommandBufferPool = VulkanInitialization.CreateCommandBufferPool(Api, _device, Queue, QueueLock, queueFamilyIndex);
CommandBufferPool = new CommandBufferPool(Api, _device, Queue, QueueLock, queueFamilyIndex);
DescriptorSetManager = new DescriptorSetManager(_device);