Home
last modified time | relevance | path

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

/external/skia/tools/viewer/sk_app/
DVulkanWindowContext.cpp289 VkCommandPoolCreateInfo commandPoolInfo; in createBuffers() local
290 memset(&commandPoolInfo, 0, sizeof(VkCommandPoolCreateInfo)); in createBuffers()
291 commandPoolInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; in createBuffers()
293 commandPoolInfo.queueFamilyIndex = fBackendContext->fGraphicsQueueIndex; in createBuffers()
294 commandPoolInfo.flags = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT; in createBuffers()
296 CreateCommandPool(fBackendContext->fDevice, &commandPoolInfo, in createBuffers()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationSmokeTests.cpp405 VkCommandPoolCreateInfo commandPoolInfo; in createCommandBuffer() local
409 deMemset(&commandPoolInfo, 0xcd, sizeof(commandPoolInfo)); in createCommandBuffer()
410 commandPoolInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; in createCommandBuffer()
411 commandPoolInfo.pNext = DE_NULL; in createCommandBuffer()
412 commandPoolInfo.flags = 0; in createCommandBuffer()
413 commandPoolInfo.queueFamilyIndex = queueFamilyNdx; in createCommandBuffer()
415 commandPool = createCommandPool(deviceInterface, device, &commandPoolInfo, DE_NULL); in createCommandBuffer()