Searched refs:mCommandPool (Results 1 – 12 of 12) sorted by relevance
/external/angle/src/libANGLE/renderer/vulkan/ |
D | PersistentCommandPool.cpp | 22 ASSERT(!mCommandPool.valid() && mFreeBuffers.empty()); in ~PersistentCommandPool() 29 ASSERT(!mCommandPool.valid()); in init() 46 ANGLE_VK_TRY(context, mCommandPool.init(context->getDevice(), commandPoolInfo)); in init() 61 ASSERT(mCommandPool.valid()); in destroy() 65 cmdBuf.destroy(device, mCommandPool); in destroy() 69 mCommandPool.destroy(device); in destroy() 104 commandBufferInfo.commandPool = mCommandPool.getHandle(); in allocateCommandBuffer()
|
D | SecondaryCommandPool.cpp | 47 ANGLE_VK_TRY(context, mCommandPool.init(context->getDevice(), poolInfo)); in init() 56 mCommandPool.destroy(device); in destroy() 72 allocInfo.commandPool = mCommandPool.getHandle(); in allocate() 106 mCommandPool.freeCommandBuffers(device, 1, &bufferHandle); in freeCollectedBuffers() 120 mCommandPool.freeCommandBuffers(device, 1, &bufferHandle); in freeCollectedBuffers()
|
D | VulkanSecondaryCommandBuffer.cpp | 51 mCommandPool = pool; in initialize() 73 ASSERT(mCommandPool != nullptr); in destroy() 74 mCommandPool->collect(this); in destroy()
|
D | PersistentCommandPool.h | 36 bool valid() const { return mCommandPool.valid(); } in valid() 43 CommandPool mCommandPool; variable
|
D | SecondaryCommandPool.h | 36 bool valid() const { return mCommandPool.valid(); } in valid() 53 CommandPool mCommandPool; variable
|
D | vk_helpers.cpp | 1426 mCommandPool(nullptr), in CommandBufferHelperCommon() 1452 ASSERT(mCommandPool == nullptr); in attachCommandPoolImpl() 1455 mCommandPool = commandPool; in attachCommandPoolImpl() 1470 ASSERT(mCommandPool != nullptr); in detachCommandPoolImpl() 1479 *commandPoolOut = mCommandPool; in detachCommandPoolImpl() 1480 mCommandPool = nullptr; in detachCommandPoolImpl() 1482 ASSERT(mCommandPool == nullptr); in detachCommandPoolImpl() 1492 ASSERT(mCommandPool != nullptr); in releaseCommandPoolImpl() 1497 mCommandPool->collect(&derived->getCommandBuffer()); in releaseCommandPoolImpl() 1500 mCommandPool = nullptr; in releaseCommandPoolImpl() [all …]
|
D | VulkanSecondaryCommandBuffer.h | 252 SecondaryCommandPool *mCommandPool = nullptr; variable
|
D | RendererVk.cpp | 1318 ASSERT(!mCommandPool.valid()); in init() 1329 mCommandPool.destroy(device); in destroy() 1347 if (!mCommandPool.valid()) in getCommandBuffer() 1359 ANGLE_VK_TRY(context, mCommandPool.init(context->getDevice(), createInfo)); in getCommandBuffer() 1366 allocInfo.commandPool = mCommandPool.getHandle(); in getCommandBuffer()
|
D | RendererVk.h | 159 vk::CommandPool mCommandPool; variable
|
D | vk_helpers.h | 1247 SecondaryCommandPool *mCommandPool; variable
|
/external/angle/src/tests/test_utils/ |
D | VulkanHelper.cpp | 175 if (mCommandPool != VK_NULL_HANDLE) in ~VulkanHelper() 177 vkDestroyCommandPool(mDevice, mCommandPool, nullptr); in ~VulkanHelper() 362 result = vkCreateCommandPool(mDevice, &commandPoolCreateInfo, nullptr, &mCommandPool); in initialize() 464 vkResult = vkCreateCommandPool(mDevice, &commandPoolCreateInfo, nullptr, &mCommandPool); in initializeFromANGLE() 919 /* .commandPool = */ mCommandPool, in releaseImageAndSignalSemaphore() 979 /* .commandPool = */ mCommandPool, in waitSemaphoreAndAcquireImage() 1093 /* .commandPool = */ mCommandPool, in readPixels() 1195 vkFreeCommandBuffers(mDevice, mCommandPool, commandBufferCount, commandBuffers); in readPixels() 1306 /* .commandPool = */ mCommandPool, in writePixels() 1412 vkFreeCommandBuffers(mDevice, mCommandPool, commandBufferCount, commandBuffers); in writePixels()
|
D | VulkanHelper.h | 141 VkCommandPool mCommandPool = VK_NULL_HANDLE; variable
|