Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/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.cpp105 mCommandPool = nullptr; in initTask()
230 mCommandPool = commandPool; in initFlushAndQueueSubmit()
272 std::swap(mCommandPool, rhs.mCommandPool); in operator =()
DCommandProcessor.h143 CommandPool *getCommandPool() const { return mCommandPool; } in getCommandPool()
158 CommandPool *mCommandPool; variable
DContextVk.cpp760 mCommandPool.destroy(device); in onDestroy()
869 this, &mCommandPool, mRenderer->getDeviceQueueIndex(), hasProtectedContent())); in initialize()
871 mRenderer->getCommandBufferHelper(this, false, &mCommandPool, &mOutsideRenderPassCommands)); in initialize()
872 ANGLE_TRY(mRenderer->getCommandBufferHelper(this, true, &mCommandPool, &mRenderPassCommands)); in initialize()
2307 std::move(mCurrentGarbage), &mCommandPool, submitSerialOut)); in submitFrame()
5658 return mCommandPool; in getCommandPool()
Dvk_helpers.h1062 CommandPool *getCommandPool() { return mCommandPool; } in getCommandPool()
1262 CommandPool *mCommandPool; variable
DContextVk.h1133 vk::CommandPool mCommandPool; variable
Dvk_helpers.cpp987 mCommandPool(nullptr), in CommandBufferHelper()
1032 mCommandPool = commandPool; in initialize()
1039 return mCommandBuffer.initialize(context, mCommandPool, mIsRenderPassCommandBuffer, in initializeCommandBuffer()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
DVulkanHelper.cpp162 if (mCommandPool != VK_NULL_HANDLE) in ~VulkanHelper()
164 vkDestroyCommandPool(mDevice, mCommandPool, nullptr); in ~VulkanHelper()
349 result = vkCreateCommandPool(mDevice, &commandPoolCreateInfo, nullptr, &mCommandPool); in initialize()
439 vkResult = vkCreateCommandPool(mDevice, &commandPoolCreateInfo, nullptr, &mCommandPool); in initializeFromANGLE()
820 /* .commandPool = */ mCommandPool, in releaseImageAndSignalSemaphore()
880 /* .commandPool = */ mCommandPool, in waitSemaphoreAndAcquireImage()
994 /* .commandPool = */ mCommandPool, in readPixels()
1096 vkFreeCommandBuffers(mDevice, mCommandPool, commandBufferCount, commandBuffers); in readPixels()
DVulkanHelper.h123 VkCommandPool mCommandPool = VK_NULL_HANDLE; variable