Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/tools/mlir-vulkan-runner/
H A DVulkanRuntime.cpp517 VkCommandBufferBeginInfo commandBufferBeginInfo = { in copyResource() local
524 vkBeginCommandBuffer(commandBuffer, &commandBufferBeginInfo), in copyResource()
817 VkCommandBufferBeginInfo commandBufferBeginInfo = {}; in createComputeCommandBuffer() local
818 commandBufferBeginInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO; in createComputeCommandBuffer()
819 commandBufferBeginInfo.pNext = nullptr; in createComputeCommandBuffer()
820 commandBufferBeginInfo.flags = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT; in createComputeCommandBuffer()
821 commandBufferBeginInfo.pInheritanceInfo = nullptr; in createComputeCommandBuffer()
825 vkBeginCommandBuffer(commandBuffer, &commandBufferBeginInfo), in createComputeCommandBuffer()