Searched refs:mCommandPool (Results 1 – 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | PersistentCommandPool.cpp | 22 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()
|
D | PersistentCommandPool.h | 36 bool valid() const { return mCommandPool.valid(); } in valid() 43 vk::CommandPool mCommandPool; variable
|
D | CommandProcessor.cpp | 105 mCommandPool = nullptr; in initTask() 230 mCommandPool = commandPool; in initFlushAndQueueSubmit() 272 std::swap(mCommandPool, rhs.mCommandPool); in operator =()
|
D | CommandProcessor.h | 143 CommandPool *getCommandPool() const { return mCommandPool; } in getCommandPool() 158 CommandPool *mCommandPool; variable
|
D | ContextVk.cpp | 760 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()
|
D | vk_helpers.h | 1062 CommandPool *getCommandPool() { return mCommandPool; } in getCommandPool() 1262 CommandPool *mCommandPool; variable
|
D | ContextVk.h | 1133 vk::CommandPool mCommandPool; variable
|
D | vk_helpers.cpp | 987 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/ |
D | VulkanHelper.cpp | 162 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()
|
D | VulkanHelper.h | 123 VkCommandPool mCommandPool = VK_NULL_HANDLE; variable
|