Searched refs:commandBufferAllocateInfo (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/tests/VulkanBenchmarks/ |
H A D | ClearImageBenchmarks.cpp | 57 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()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
H A D | DrawTester.cpp | 357 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()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
H A D | VulkanHelper.cpp | 817 VkCommandBufferAllocateInfo commandBufferAllocateInfo = { 825 result = vkAllocateCommandBuffers(mDevice, &commandBufferAllocateInfo, commandBuffers); 877 VkCommandBufferAllocateInfo commandBufferAllocateInfo = { 885 result = vkAllocateCommandBuffers(mDevice, &commandBufferAllocateInfo, commandBuffers); 991 VkCommandBufferAllocateInfo commandBufferAllocateInfo = { 999 result = vkAllocateCommandBuffers(mDevice, &commandBufferAllocateInfo, commandBuffers);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/ |
H A D | vktRobustnessUtil.cpp | 311 const VkCommandBufferAllocateInfo commandBufferAllocateInfo = in TestEnvironment() local 320 m_commandBuffer = allocateCommandBuffer(vk, m_device, &commandBufferAllocateInfo); in TestEnvironment()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/ |
H A D | vktRobustnessUtil.cpp | 336 const VkCommandBufferAllocateInfo commandBufferAllocateInfo = in TestEnvironment() local 345 m_commandBuffer = allocateCommandBuffer(vk, m_device, &commandBufferAllocateInfo); in TestEnvironment()
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan_hash.hpp | 2181 std::size_t operator()( VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo const & commandBufferAllocateInfo ) const VULKAN_HPP_NOEXCEPT 2184 VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.sType ); 2185 VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.pNext ); 2186 VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.commandPool ); 2187 VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.level ); 2188 VULKAN_HPP_HASH_COMBINE( seed, commandBufferAllocateInfo.commandBufferCount );
|
Completed in 23 milliseconds