Lines Matching refs:presentOutOfDate
1177 bool presentOutOfDate) in checkForOutOfDateSwapchain() argument
1180 presentOutOfDate = presentOutOfDate || swapIntervalChanged; in checkForOutOfDateSwapchain()
1184 !presentOutOfDate) in checkForOutOfDateSwapchain()
1193 !presentOutOfDate) in checkForOutOfDateSwapchain()
1199 presentOutOfDate = mSurfaceCaps.currentTransform != mPreTransform || in checkForOutOfDateSwapchain()
1205 if (!presentOutOfDate) in checkForOutOfDateSwapchain()
1324 bool *presentOutOfDate) in computePresentOutOfDate() argument
1333 *presentOutOfDate = ((result == VK_ERROR_OUT_OF_DATE_KHR) || (result == VK_SUBOPTIMAL_KHR)); in computePresentOutOfDate()
1334 if (!*presentOutOfDate) in computePresentOutOfDate()
1342 *presentOutOfDate = result == VK_ERROR_OUT_OF_DATE_KHR; in computePresentOutOfDate()
1343 if (!*presentOutOfDate && result != VK_SUBOPTIMAL_KHR) in computePresentOutOfDate()
1355 bool *presentOutOfDate) in present() argument
1505 ANGLE_TRY(computePresentOutOfDate(contextVk, result, presentOutOfDate)); in present()
1527 bool presentOutOfDate = false; in swapImpl() local
1528 ANGLE_TRY(present(contextVk, rects, n_rects, pNextChain, &presentOutOfDate)); in swapImpl()
1530 if (!presentOutOfDate) in swapImpl()
1539 ANGLE_TRY(doDeferredAcquireNextImage(context, presentOutOfDate)); in swapImpl()
1560 bool presentOutOfDate) in doDeferredAcquireNextImage() argument
1572 ANGLE_TRY(computePresentOutOfDate(contextVk, result, &presentOutOfDate)); in doDeferredAcquireNextImage()
1575 ANGLE_TRY(checkForOutOfDateSwapchain(contextVk, presentOutOfDate)); in doDeferredAcquireNextImage()