Searched refs:mCommandPool (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/libs/hwui/renderthread/ |
D | VulkanManager.cpp | 61 if (VK_NULL_HANDLE != mCommandPool) { in destroy() 62 mDestroyCommandPool(mDevice, mCommandPool, nullptr); in destroy() 63 mCommandPool = VK_NULL_HANDLE; in destroy() 360 if (VK_NULL_HANDLE == mCommandPool) { in initialize() 368 mCreateCommandPool(mDevice, &commandPoolInfo, nullptr, &mCommandPool); in initialize() 371 LOG_ALWAYS_FATAL_IF(mCommandPool == VK_NULL_HANDLE); in initialize()
|
D | VulkanManager.h | 165 VkCommandPool mCommandPool = VK_NULL_HANDLE; variable
|
/frameworks/opt/gamesdk/src/swappyVk/ |
D | SwappyVk.cpp | 552 std::map<VkQueue, VkCommandPool> mCommandPool; member in SwappyVkGoogleDisplayTimingAndroid 560 if (mCommandPool.find(queue) != mCommandPool.end()) { in initializeVkSyncObjects() 573 VkResult res = vkCreateCommandPool(mDevice, &cmd_pool_info, NULL, &mCommandPool[queue]); in initializeVkSyncObjects() 581 .commandPool = mCommandPool[queue], in initializeVkSyncObjects() 664 vkFreeCommandBuffers(mDevice, mCommandPool[it->first], 1, &sync.command); in destroyVkSyncObjects() 670 vkDestroyCommandPool(mDevice, mCommandPool[it->first], NULL); in destroyVkSyncObjects()
|