Home
last modified time | relevance | path

Searched refs:mCommandPool (Results 1 – 8 of 8) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DPersistentCommandPool.cpp22 ASSERT(!mCommandPool.valid() && mFreeBuffers.empty()); in ~PersistentCommandPool()
29 ASSERT(!mCommandPool.valid()); in init()
44 ANGLE_VK_TRY(context, mCommandPool.init(context->getDevice(), commandPoolInfo)); in init()
59 ASSERT(mCommandPool.valid()); in destroy()
63 cmdBuf.destroy(device, mCommandPool); in destroy()
67 mCommandPool.destroy(device); in destroy()
103 commandBufferInfo.commandPool = mCommandPool.getHandle(); in allocateCommandBuffer()
DPersistentCommandPool.h36 bool valid() const { return mCommandPool.valid(); } in valid()
43 vk::CommandPool mCommandPool; variable
DCommandProcessor.h547 CommandPool mCommandPool; variable
DCommandProcessor.cpp423 mCommandPool.destroy(mRenderer->getDevice()); in processTask()
435 std::move(task->getGarbage()), &mCommandPool, task->getQueueSerial())); in processTask()
DContextVk.h1084 vk::CommandPool mCommandPool; variable
DContextVk.cpp642 mCommandPool.destroy(device); in onDestroy()
2181 getShareGroupVk()->releaseResourceUseLists(), std::move(mCurrentGarbage), &mCommandPool)); in submitFrame()
5348 return mCommandPool; in getCommandPool()
/external/angle/src/tests/test_utils/
DVulkanExternalHelper.cpp161 if (mCommandPool != VK_NULL_HANDLE) in ~VulkanExternalHelper()
163 vkDestroyCommandPool(mDevice, mCommandPool, nullptr); in ~VulkanExternalHelper()
342 result = vkCreateCommandPool(mDevice, &commandPoolCreateInfo, nullptr, &mCommandPool); in initialize()
728 /* .commandPool = */ mCommandPool, in releaseImageAndSignalSemaphore()
788 /* .commandPool = */ mCommandPool, in waitSemaphoreAndAcquireImage()
902 /* .commandPool = */ mCommandPool, in readPixels()
976 vkFreeCommandBuffers(mDevice, mCommandPool, commandBufferCount, commandBuffers); in readPixels()
DVulkanExternalHelper.h118 VkCommandPool mCommandPool = VK_NULL_HANDLE; variable