Home
last modified time | relevance | path

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

/external/swiftshader/tests/VulkanBenchmarks/
DClearImageBenchmarks.cpp52 vk::CommandPoolCreateInfo commandPoolCreateInfo; in initialize() local
53 commandPoolCreateInfo.queueFamilyIndex = tester.getQueueFamilyIndex(); in initialize()
55 commandPool = device.createCommandPool(commandPoolCreateInfo); in initialize()
/external/llvm-project/mlir/tools/mlir-vulkan-runner/
DVulkanRuntime.cpp751 VkCommandPoolCreateInfo commandPoolCreateInfo = {}; in createCommandPool() local
752 commandPoolCreateInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; in createCommandPool()
753 commandPoolCreateInfo.pNext = nullptr; in createCommandPool()
754 commandPoolCreateInfo.flags = 0; in createCommandPool()
755 commandPoolCreateInfo.queueFamilyIndex = queueFamilyIndex; in createCommandPool()
756 RETURN_ON_VULKAN_ERROR(vkCreateCommandPool(device, &commandPoolCreateInfo, in createCommandPool()
/external/swiftshader/tests/VulkanWrapper/
DDrawTester.cpp327 vk::CommandPoolCreateInfo commandPoolCreateInfo; in createCommandBuffers() local
328 commandPoolCreateInfo.queueFamilyIndex = queueFamilyIndex; in createCommandBuffers()
329 commandPoolCreateInfo.flags = vk::CommandPoolCreateFlagBits::eResetCommandBuffer; in createCommandBuffers()
330 commandPool = device.createCommandPool(commandPoolCreateInfo); in createCommandBuffers()
/external/angle/src/tests/test_utils/
DVulkanExternalHelper.cpp336 VkCommandPoolCreateInfo commandPoolCreateInfo = { in initialize() local
342 result = vkCreateCommandPool(mDevice, &commandPoolCreateInfo, nullptr, &mCommandPool); in initialize()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryDeviceMemoryReportTests.cpp1482 const VkCommandPoolCreateInfo commandPoolCreateInfo = in create() local
1490 return createCommandPool(env.vkd, env.device, &commandPoolCreateInfo); in create()