Home
last modified time | relevance | path

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

/external/skia/tools/viewer/sk_app/
DVulkanWindowContext.cpp211 VkSwapchainCreateInfoKHR swapchainCreateInfo; in createSwapchain() local
212 memset(&swapchainCreateInfo, 0, sizeof(VkSwapchainCreateInfoKHR)); in createSwapchain()
213 swapchainCreateInfo.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR; in createSwapchain()
214 swapchainCreateInfo.surface = fSurface; in createSwapchain()
215 swapchainCreateInfo.minImageCount = imageCount; in createSwapchain()
216 swapchainCreateInfo.imageFormat = surfaceFormat; in createSwapchain()
217 swapchainCreateInfo.imageColorSpace = colorSpace; in createSwapchain()
218 swapchainCreateInfo.imageExtent = extent; in createSwapchain()
219 swapchainCreateInfo.imageArrayLayers = 1; in createSwapchain()
220 swapchainCreateInfo.imageUsage = usageFlags; in createSwapchain()
[all …]