• Home
  • Raw
  • Download

Lines Matching refs:pPresentInfo

11439 VKAPI_ATTR VkResult VKAPI_CALL QueuePresentKHR(VkQueue queue, const VkPresentInfoKHR *pPresentInfo)…  in QueuePresentKHR()  argument
11444 for (uint32_t i = 0; i < pPresentInfo->waitSemaphoreCount; ++i) { in QueuePresentKHR()
11445 auto pSemaphore = getSemaphoreNode(dev_data, pPresentInfo->pWaitSemaphores[i]); in QueuePresentKHR()
11451 …interpret_cast<uint64_t &>(queue), reinterpret_cast<const uint64_t &>(pPresentInfo->pWaitSemaphore… in QueuePresentKHR()
11455 for (uint32_t i = 0; i < pPresentInfo->swapchainCount; ++i) { in QueuePresentKHR()
11456 auto swapchain_data = getSwapchainNode(dev_data, pPresentInfo->pSwapchains[i]); in QueuePresentKHR()
11458 if (pPresentInfo->pImageIndices[i] >= swapchain_data->images.size()) { in QueuePresentKHR()
11460 …reinterpret_cast<uint64_t const &>(pPresentInfo->pSwapchains[i]), __LINE__, DRAWSTATE_SWAPCHAIN_IN… in QueuePresentKHR()
11462pPresentInfo->pImageIndices[i], (uint32_t)swapchain_data->images.size()); in QueuePresentKHR()
11465 auto image = swapchain_data->images[pPresentInfo->pImageIndices[i]]; in QueuePresentKHR()
11471 …reinterpret_cast<uint64_t const &>(pPresentInfo->pSwapchains[i]), __LINE__, DRAWSTATE_SWAPCHAIN_IM… in QueuePresentKHR()
11473 pPresentInfo->pImageIndices[i]); in QueuePresentKHR()
11497 VkResult result = dev_data->dispatch_table.QueuePresentKHR(queue, pPresentInfo); in QueuePresentKHR()
11502 for (uint32_t i = 0; i < pPresentInfo->waitSemaphoreCount; ++i) { in QueuePresentKHR()
11503 auto pSemaphore = getSemaphoreNode(dev_data, pPresentInfo->pWaitSemaphores[i]); in QueuePresentKHR()
11510 for (uint32_t i = 0; i < pPresentInfo->swapchainCount; ++i) { in QueuePresentKHR()
11514 auto local_result = pPresentInfo->pResults ? pPresentInfo->pResults[i] : result; in QueuePresentKHR()
11520 auto swapchain_data = getSwapchainNode(dev_data, pPresentInfo->pSwapchains[i]); in QueuePresentKHR()
11521 auto image = swapchain_data->images[pPresentInfo->pImageIndices[i]]; in QueuePresentKHR()