Searched refs:presentInfo (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/test/unittest/ |
H A D | vulkan_loader_unit_test.cpp | 1033 VkPresentInfoKHR presentInfo = {}; variable 1034 presentInfo.sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR; 1035 presentInfo.pNext = &presentRegions; 1036 presentInfo.swapchainCount = 1; 1037 presentInfo.pSwapchains = &swapChain2_; 1038 presentInfo.pImageIndices = &imageIndex; 1040 presentInfo.pWaitSemaphores = &semaphore_; 1041 presentInfo.waitSemaphoreCount = 1; 1042 VkResult err = fpQueuePresentKHR(queue, &presentInfo);
|
/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/swapchain_layer/ |
H A D | swapchain_layer.cpp | 1091 const VkPresentRegionKHR* GetPresentRegions(const VkPresentInfoKHR* presentInfo) in GetPresentRegions() argument 1105 if (presentRegions->swapchainCount != presentInfo->swapchainCount) { in GetPresentRegions() 1112 VkResult ReleaseImage(VkQueue queue, const VkPresentInfoKHR* presentInfo, in ReleaseImage() argument 1118 queue, presentInfo->waitSemaphoreCount, presentInfo->pWaitSemaphores, img.image, &fence); in ReleaseImage() 1210 VkQueue queue, const VkPresentInfoKHR* presentInfo) in QueuePresentKHR() argument 1215 const VkPresentRegionKHR* regions = GetPresentRegions(presentInfo); in QueuePresentKHR() 1221 for (uint32_t i = 0; i < presentInfo->swapchainCount; i++) { in QueuePresentKHR() 1226 ret = ReleaseImage(queue, presentInfo, img, fence); in QueuePresentKHR() 1227 if (swapchain.surface.swapchainHandle == presentInfo->pSwapchains[i]) { in QueuePresentKHR() 1239 if (presentInfo->pResults) { in QueuePresentKHR() [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | render_backend_vk.cpp | 324 const VkPresentInfoKHR presentInfo { in Present() local 337 &presentInfo); // pPresentInfo in Present()
|