Home
last modified time | relevance | path

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

/external/skia/tools/viewer/sk_app/
DVulkanWindowContext.cpp306 VkCommandBufferAllocateInfo commandBuffersInfo; in createBuffers() local
307 memset(&commandBuffersInfo, 0, sizeof(VkCommandBufferAllocateInfo)); in createBuffers()
308 commandBuffersInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO; in createBuffers()
309 commandBuffersInfo.pNext = nullptr; in createBuffers()
310 commandBuffersInfo.commandPool = fCommandPool; in createBuffers()
311 commandBuffersInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY; in createBuffers()
312 commandBuffersInfo.commandBufferCount = 2; in createBuffers()
331 AllocateCommandBuffers(fBackendContext->fDevice, &commandBuffersInfo, in createBuffers()