get image fence

This commit is contained in:
Gregory Wells
2025-07-09 20:52:22 -04:00
parent 259bbc160a
commit 33b2834506

View File

@@ -82,14 +82,17 @@ gnReturnCode createPresentationQueue(gnPresentationQueueHandle presentationQueue
} }
gnReturnCode getVulkanPresentQueueImage(gnPresentationQueueHandle presentationQueue, uint32_t* imageIndex) { gnReturnCode getVulkanPresentQueueImage(gnPresentationQueueHandle presentationQueue, uint32_t* imageIndex) {
vkResetFences(presentationQueue->outputDevice->outputDevice->device, 1, &presentationQueue->outputDevice->outputDevice->barrierFence);
VkResult result = vkAcquireNextImageKHR( VkResult result = vkAcquireNextImageKHR(
presentationQueue->outputDevice->outputDevice->device, presentationQueue->outputDevice->outputDevice->device,
presentationQueue->presentationQueue->swapChain, presentationQueue->presentationQueue->swapChain,
UINT64_MAX, VK_NULL_HANDLE, VK_NULL_HANDLE, imageIndex); UINT64_MAX, VK_NULL_HANDLE, presentationQueue->outputDevice->outputDevice->barrierFence, imageIndex);
if (result == VK_ERROR_OUT_OF_DATE_KHR) return GN_OUT_OF_DATE_PRESENTATION_QUEUE; if (result == VK_ERROR_OUT_OF_DATE_KHR) return GN_OUT_OF_DATE_PRESENTATION_QUEUE;
if (result == VK_SUBOPTIMAL_KHR) return GN_SUBOPTIMAL_PRESENTATION_QUEUE; if (result == VK_SUBOPTIMAL_KHR) return GN_SUBOPTIMAL_PRESENTATION_QUEUE;
vkWaitForFences(presentationQueue->outputDevice->outputDevice->device, 1, &presentationQueue->outputDevice->outputDevice->barrierFence, VK_TRUE, UINT64_MAX);
return GN_SUCCESS; return GN_SUCCESS;
} }