Lines Matching refs:mSurfaceCaps

609         mSurfaceCaps                = surfaceCaps2.surfaceCapabilities;  in initializeImpl()
615 &mSurfaceCaps)); in initializeImpl()
627 uint32_t width = mSurfaceCaps.currentExtent.width; in initializeImpl()
628 uint32_t height = mSurfaceCaps.currentExtent.height; in initializeImpl()
632 (mSurfaceCaps.supportedUsageFlags & kSurfaceVkColorImageUsageFlags) == in initializeImpl()
639 if (mSurfaceCaps.currentExtent.width == kSurfaceSizedBySwapchain) in initializeImpl()
641 ASSERT(mSurfaceCaps.currentExtent.height == kSurfaceSizedBySwapchain); in initializeImpl()
697 mPreTransform = mSurfaceCaps.currentTransform; in initializeImpl()
704 if ((mSurfaceCaps.supportedTransforms & mPreTransform) == 0) in initializeImpl()
706 mPreTransform = mSurfaceCaps.currentTransform; in initializeImpl()
784 if ((mSurfaceCaps.supportedCompositeAlpha & mCompositeAlpha) == 0) in initializeImpl()
788 ANGLE_VK_CHECK(displayVk, (mSurfaceCaps.supportedCompositeAlpha & mCompositeAlpha) != 0, in initializeImpl()
1190 ANGLE_TRY(queryAndAdjustSurfaceCaps(contextVk, &mSurfaceCaps)); in checkForOutOfDateSwapchain()
1199 presentOutOfDate = mSurfaceCaps.currentTransform != mPreTransform || in checkForOutOfDateSwapchain()
1200 mSurfaceCaps.currentExtent.width != swapchainWidth || in checkForOutOfDateSwapchain()
1201 mSurfaceCaps.currentExtent.height != swapchainHeight; in checkForOutOfDateSwapchain()
1210 gl::Extents newSwapchainExtents(mSurfaceCaps.currentExtent.width, in checkForOutOfDateSwapchain()
1211 mSurfaceCaps.currentExtent.height, 1); in checkForOutOfDateSwapchain()
1216 mPreTransform = mSurfaceCaps.currentTransform; in checkForOutOfDateSwapchain()
1708 mMinImageCount = std::max(3u, mSurfaceCaps.minImageCount); in setSwapInterval()
1711 if (mSurfaceCaps.maxImageCount > 0 && mMinImageCount > mSurfaceCaps.maxImageCount) in setSwapInterval()
1713 mMinImageCount = mSurfaceCaps.maxImageCount; in setSwapInterval()
1744 if (mSurfaceCaps.currentExtent.width == kSurfaceSizedBySwapchain) in getUserWidth()
1766 if (mSurfaceCaps.currentExtent.height == kSurfaceSizedBySwapchain) in getUserHeight()