VideoBackends/Vulkan: Use WorkQueueThreadSP for swap commands.

This commit is contained in:
Jordan Woyak
2025-04-30 16:29:35 -05:00
parent 753fe5bed1
commit ec940e6a2e

View File

@ -161,7 +161,7 @@ private:
u32 present_image_index; u32 present_image_index;
u32 command_buffer_index; u32 command_buffer_index;
}; };
Common::WorkQueueThread<PendingCommandBufferSubmit> m_submit_thread; Common::WorkQueueThreadSP<PendingCommandBufferSubmit> m_submit_thread;
VkSemaphore m_present_semaphore = VK_NULL_HANDLE; VkSemaphore m_present_semaphore = VK_NULL_HANDLE;
Common::Flag m_last_present_failed; Common::Flag m_last_present_failed;
Common::Flag m_last_present_done; Common::Flag m_last_present_done;