Home
last modified time | relevance | path

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

/external/swiftshader/tests/VulkanBenchmarks/
DClearImageBenchmarks.cpp57 vk::CommandBufferAllocateInfo commandBufferAllocateInfo; in initialize() local
58 commandBufferAllocateInfo.commandPool = commandPool; in initialize()
59 commandBufferAllocateInfo.commandBufferCount = 1; in initialize()
61 commandBuffer = device.allocateCommandBuffers(commandBufferAllocateInfo)[0]; in initialize()
/external/llvm-project/mlir/tools/mlir-vulkan-runner/
DVulkanRuntime.cpp490 VkCommandBufferAllocateInfo commandBufferAllocateInfo = { in copyResource() local
499 &commandBufferAllocateInfo, in copyResource()
789 VkCommandBufferAllocateInfo commandBufferAllocateInfo = {}; in createComputeCommandBuffer() local
790 commandBufferAllocateInfo.sType = in createComputeCommandBuffer()
792 commandBufferAllocateInfo.pNext = nullptr; in createComputeCommandBuffer()
793 commandBufferAllocateInfo.commandPool = commandPool; in createComputeCommandBuffer()
794 commandBufferAllocateInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY; in createComputeCommandBuffer()
795 commandBufferAllocateInfo.commandBufferCount = 1; in createComputeCommandBuffer()
799 &commandBufferAllocateInfo, in createComputeCommandBuffer()
/external/angle/src/tests/test_utils/
DVulkanExternalHelper.cpp725 VkCommandBufferAllocateInfo commandBufferAllocateInfo = { in releaseImageAndSignalSemaphore() local
733 result = vkAllocateCommandBuffers(mDevice, &commandBufferAllocateInfo, commandBuffers); in releaseImageAndSignalSemaphore()
785 VkCommandBufferAllocateInfo commandBufferAllocateInfo = { in waitSemaphoreAndAcquireImage() local
793 result = vkAllocateCommandBuffers(mDevice, &commandBufferAllocateInfo, commandBuffers); in waitSemaphoreAndAcquireImage()
899 VkCommandBufferAllocateInfo commandBufferAllocateInfo = { in readPixels() local
907 result = vkAllocateCommandBuffers(mDevice, &commandBufferAllocateInfo, commandBuffers); in readPixels()
/external/swiftshader/tests/VulkanWrapper/
DDrawTester.cpp357 vk::CommandBufferAllocateInfo commandBufferAllocateInfo; in createCommandBuffers() local
358 commandBufferAllocateInfo.commandPool = commandPool; in createCommandBuffers()
359 commandBufferAllocateInfo.commandBufferCount = static_cast<uint32_t>(swapchain->imageCount()); in createCommandBuffers()
360 commandBufferAllocateInfo.level = vk::CommandBufferLevel::ePrimary; in createCommandBuffers()
362 commandBuffers = device.allocateCommandBuffers(commandBufferAllocateInfo); in createCommandBuffers()
/external/deqp/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessUtil.cpp290 const VkCommandBufferAllocateInfo commandBufferAllocateInfo = in TestEnvironment() local
299 m_commandBuffer = allocateCommandBuffer(vk, m_device, &commandBufferAllocateInfo); in TestEnvironment()