HomeSort by relevance Sort by last modified time
    Searched refs:CommandPool (Results 1 - 8 of 8) sorted by null

  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 653 // CommandPool
655 struct CommandPool {
659 DEFINE_OBJECT_HANDLE_CONVERSION(CommandPool)
667 CommandPool* pool = static_cast<CommandPool*>(allocator->pfnAllocation(
668 allocator->pUserData, sizeof(CommandPool), alignof(CommandPool),
680 CommandPool* pool = GetCommandPoolFromHandle(cmd_pool);
691 CommandPool& pool = *GetCommandPoolFromHandle(alloc_info->commandPool);
    [all...]
  /external/vulkan-validation-layers/tests/
vktestbinding.h 65 class CommandPool;
658 class CommandPool : public internal::NonDispHandle<VkCommandPool> {
660 ~CommandPool();
662 explicit CommandPool() : NonDispHandle() {}
663 explicit CommandPool(const Device &dev,
674 CommandPool::create_info(uint32_t queue_family_index) {
    [all...]
vkrenderframework.h 267 vk_testing::CommandPool *m_commandPool;
vktestbinding.cpp 784 NON_DISPATCHABLE_HANDLE_DTOR(CommandPool, vkDestroyCommandPool)
786 void CommandPool::init(const Device &dev, const VkCommandPoolCreateInfo &info) {
801 // Make sure commandPool is set
802 assert(info.commandPool);
808 cmd_pool_ = info.commandPool;
vkrenderframework.cpp 665 vk_testing::CommandPool pool(*m_device, cmd_pool_info);
749 vk_testing::CommandPool pool(*m_device, cmd_pool_info);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp     [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 170 VK_NULL_DEFINE_DEVICE_OBJ(CommandPool);
644 pCommandBuffers[ndx] = reinterpret_cast<VkCommandBuffer>(new CommandBuffer(device, pAllocateInfo->commandPool, pAllocateInfo->level));
651 VKAPI_ATTR void VKAPI_CALL freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers)
654 DE_UNREF(commandPool);
vkNullDriverImpl.inl 121 VK_NULL_RETURN((*pCommandPool = allocateNonDispHandle<CommandPool, VkCommandPool>(device, pCreateInfo, pAllocator)));
296 VKAPI_ATTR void VKAPI_CALL destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator)
299 freeNonDispHandle<CommandPool, VkCommandPool>(commandPool, pAllocator);
576 VKAPI_ATTR VkResult VKAPI_CALL resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags)
579 DE_UNREF(commandPool);
    [all...]

Completed in 5690 milliseconds