Home
last modified time | relevance | path

Searched refs:mDescriptorPools (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp2461 ASSERT(mDescriptorPools.empty() || in init()
2462 (mDescriptorPools.size() == 1 && in init()
2463 mDescriptorPools[mCurrentPoolIndex]->get().hasCapacity(mMaxSetsPerPool))); in init()
2469 mDescriptorPools.push_back(new RefCountedDescriptorPoolHelper()); in init()
2470 mCurrentPoolIndex = mDescriptorPools.size() - 1; in init()
2471 return mDescriptorPools[mCurrentPoolIndex]->get().init(contextVk, mPoolSizes, mMaxSetsPerPool); in init()
2476 for (RefCountedDescriptorPoolHelper *pool : mDescriptorPools) in destroy()
2483 mDescriptorPools.clear(); in destroy()
2490 for (RefCountedDescriptorPoolHelper *pool : mDescriptorPools) in release()
2497 mDescriptorPools.clear(); in release()
[all …]
DUtilsVk.h548 angle::PackedEnumMap<Function, vk::DynamicDescriptorPool> mDescriptorPools; variable
DUtilsVk.cpp1050 mDescriptorPools[f].destroy(device); in destroy()
1158 ANGLE_TRY(mDescriptorPools[function].init( in ensureResourcesInitialized()
3475 ANGLE_TRY(mDescriptorPools[function].allocateSets( in allocateDescriptorSet()
Dvk_helpers.h341 std::vector<RefCountedDescriptorPoolHelper *> mDescriptorPools; variable