Home
last modified time | relevance | path

Searched refs:swapchainCreateInfo (Results 1 – 1 of 1) sorted by relevance

/external/skia/tools/viewer/sk_app/
DVulkanWindowContext.cpp205 VkSwapchainCreateInfoKHR swapchainCreateInfo; in createSwapchain() local
206 memset(&swapchainCreateInfo, 0, sizeof(VkSwapchainCreateInfoKHR)); in createSwapchain()
207 swapchainCreateInfo.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR; in createSwapchain()
208 swapchainCreateInfo.surface = fSurface; in createSwapchain()
209 swapchainCreateInfo.minImageCount = imageCount; in createSwapchain()
210 swapchainCreateInfo.imageFormat = surfaceFormat; in createSwapchain()
211 swapchainCreateInfo.imageColorSpace = colorSpace; in createSwapchain()
212 swapchainCreateInfo.imageExtent = extent; in createSwapchain()
213 swapchainCreateInfo.imageArrayLayers = 1; in createSwapchain()
214 swapchainCreateInfo.imageUsage = usageFlags; in createSwapchain()
[all …]