Home
last modified time | relevance | path

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

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