Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationSmokeTests.cpp399 VkCommandBufferAllocateInfo commandBufferInfo; in createCommandBuffer() local
404 deMemset(&commandBufferInfo, 0xcd, sizeof(commandBufferInfo)); in createCommandBuffer()
405 commandBufferInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO; in createCommandBuffer()
406 commandBufferInfo.pNext = DE_NULL; in createCommandBuffer()
407 commandBufferInfo.commandPool = commandPool.get(); in createCommandBuffer()
408 commandBufferInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY; in createCommandBuffer()
409 commandBufferInfo.commandBufferCount = 1; in createCommandBuffer()
411 VK_CHECK(deviceInterface.allocateCommandBuffers(device, &commandBufferInfo, &commandBuffer)); in createCommandBuffer()