Lines Matching refs:mPresentInfo
106 mPresentInfo = {}; in initTask()
107 mPresentInfo.pResults = nullptr; in initTask()
108 mPresentInfo.pSwapchains = nullptr; in initTask()
109 mPresentInfo.pImageIndices = nullptr; in initTask()
110 mPresentInfo.pNext = nullptr; in initTask()
111 mPresentInfo.pWaitSemaphores = nullptr; in initTask()
134 mPresentInfo.sType = other.sType; in copyPresentInfo()
135 mPresentInfo.pNext = other.pNext; in copyPresentInfo()
140 mPresentInfo.swapchainCount = 1; in copyPresentInfo()
142 mPresentInfo.pSwapchains = &mSwapchain; in copyPresentInfo()
144 mPresentInfo.pImageIndices = &mImageIndex; in copyPresentInfo()
150 mPresentInfo.waitSemaphoreCount = 1; in copyPresentInfo()
152 mPresentInfo.pWaitSemaphores = &mWaitSemaphore; in copyPresentInfo()
155 mPresentInfo.pResults = other.pResults; in copyPresentInfo()
179 mPresentInfo.pNext = &mPresentRegions; in copyPresentInfo()
260 copyPresentInfo(rhs.mPresentInfo); in operator =()