Lines Matching refs:presentOutOfDate
931 bool presentOutOfDate) in checkForOutOfDateSwapchain() argument
936 if (swapIntervalChanged || presentOutOfDate || in checkForOutOfDateSwapchain()
971 if (swapIntervalChanged || presentOutOfDate || currentExtents != swapchainExtents) in checkForOutOfDateSwapchain()
1081 bool *presentOutOfDate) in present() argument
1225 *presentOutOfDate = ((result == VK_ERROR_OUT_OF_DATE_KHR) || (result == VK_SUBOPTIMAL_KHR)); in present()
1226 if (!*presentOutOfDate) in present()
1234 *presentOutOfDate = result == VK_ERROR_OUT_OF_DATE_KHR; in present()
1235 if (!*presentOutOfDate && result != VK_SUBOPTIMAL_KHR) in present()
1254 bool presentOutOfDate = false; in swapImpl() local
1258 ANGLE_TRY(present(contextVk, rects, n_rects, pNextChain, &presentOutOfDate)); in swapImpl()
1260 ANGLE_TRY(checkForOutOfDateSwapchain(contextVk, currentSwapHistoryIndex, presentOutOfDate)); in swapImpl()