Home
last modified time | relevance | path

Searched refs:commandPools_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Dnode_context_pool_manager_vk.cpp276 commandPools_.resize(bufferingCount);
279 for (uint32_t frameIdx = 0; frameIdx < commandPools_.size(); ++frameIdx) {
280 commandPools_[frameIdx] = CreateContextCommandPool(
307 DestroyContextCommandPool(device, commandPools_); in ~NodeContextPoolManagerVk()
348 for (const auto& cmdPoolRef : commandPools_) { in BeginBackendFrame()
360 bufferingIndex_ = (bufferingIndex_ + 1) % static_cast<uint32_t>(commandPools_.size()); in BeginBackendFrame()
400 return commandPools_[bufferingIndex_]; in GetContextCommandPool()
H A Dnode_context_pool_manager_vk.h84 BASE_NS::vector<ContextCommandPoolVk> commandPools_; variable