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

  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 334 class CommandPool
337 CommandPool (VkDevice device, const VkCommandPoolCreateInfo*)
340 ~CommandPool (void);
351 CommandPool::~CommandPool (void)
357 VkCommandBuffer CommandPool::allocate (VkCommandBufferLevel level)
374 void CommandPool::free (VkCommandBuffer buffer)
    [all...]
vkNullDriverImpl.inl 121 VK_NULL_RETURN((*pCommandPool = allocateNonDispHandle<CommandPool, VkCommandPool>(device, pCreateInfo, pAllocator)));
308 VKAPI_ATTR void VKAPI_CALL destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator)
311 freeNonDispHandle<CommandPool, VkCommandPool>(commandPool, pAllocator);
557 VKAPI_ATTR VkResult VKAPI_CALL resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags)
560 DE_UNREF(commandPool);
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 691 // CommandPool
693 struct CommandPool {
697 DEFINE_OBJECT_HANDLE_CONVERSION(CommandPool)
705 CommandPool* pool = static_cast<CommandPool*>(allocator->pfnAllocation(
706 allocator->pUserData, sizeof(CommandPool), alignof(CommandPool),
718 CommandPool* pool = GetCommandPoolFromHandle(cmd_pool);
729 CommandPool& pool = *GetCommandPoolFromHandle(alloc_info->commandPool);
    [all...]
  /external/vulkan-validation-layers/tests/
vktestbinding.h 57 class CommandPool;
560 class CommandPool : public internal::NonDispHandle<VkCommandPool> {
562 ~CommandPool();
564 explicit CommandPool() : NonDispHandle() {}
565 explicit CommandPool(const Device &dev, const VkCommandPoolCreateInfo &info) { init(dev, info); }
572 inline VkCommandPoolCreateInfo CommandPool::create_info(uint32_t queue_family_index) {
848 info.commandPool = pool;
vkrenderframework.h 220 vk_testing::CommandPool *m_commandPool;
vktestbinding.cpp 707 NON_DISPATCHABLE_HANDLE_DTOR(CommandPool, vkDestroyCommandPool)
709 void CommandPool::init(const Device &dev, const VkCommandPoolCreateInfo &info) {
723 // Make sure commandPool is set
724 assert(info.commandPool);
729 cmd_pool_ = info.commandPool;
vkrenderframework.cpp 664 vk_testing::CommandPool pool(*m_device, cmd_pool_info);
760 vk_testing::CommandPool pool(*m_device, cmd_pool_info);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.hpp 972 class CommandPool
975 CommandPool()
980 CommandPool(VkCommandPool commandPool)
981 : m_commandPool(commandPool)
984 CommandPool& operator=(VkCommandPool commandPool)
986 m_commandPool = commandPool;
991 bool operator==(CommandPool const &rhs) const
996 bool operator!=(CommandPool const &rhs) cons
    [all...]
  /external/vulkan-validation-layers/demos/
cube.cpp     [all...]

Completed in 71 milliseconds