Lines Matching refs:DynamicDescriptorPool
1166 DynamicDescriptorPool *poolToInit) in InitDynamicDescriptorPool()
1308 uint32_t DynamicDescriptorPool::mMaxSetsPerPool = 16;
1309 uint32_t DynamicDescriptorPool::mMaxSetsPerPoolMultiplier = 2;
4479 DynamicDescriptorPool::DynamicDescriptorPool() : mCachedDescriptorSetLayout(VK_NULL_HANDLE) in DynamicDescriptorPool() function in rx::vk::DynamicDescriptorPool
4484 DynamicDescriptorPool::~DynamicDescriptorPool() in ~DynamicDescriptorPool()
4491 DynamicDescriptorPool::DynamicDescriptorPool(DynamicDescriptorPool &&other) in DynamicDescriptorPool() function in rx::vk::DynamicDescriptorPool
4492 : DynamicDescriptorPool() in DynamicDescriptorPool()
4497 DynamicDescriptorPool &DynamicDescriptorPool::operator=(DynamicDescriptorPool &&other) in operator =()
4507 angle::Result DynamicDescriptorPool::init(ErrorContext *context, in init()
4528 void DynamicDescriptorPool::destroy(VkDevice device) in destroy()
4552 bool DynamicDescriptorPool::allocateFromExistingPool(ErrorContext *context, in allocateFromExistingPool()
4571 bool DynamicDescriptorPool::recycleFromGarbage(Renderer *renderer, in recycleFromGarbage()
4584 bool DynamicDescriptorPool::evictStaleDescriptorSets(Renderer *renderer, in evictStaleDescriptorSets()
4649 angle::Result DynamicDescriptorPool::allocateDescriptorSet( in allocateDescriptorSet()
4676 angle::Result DynamicDescriptorPool::getOrAllocateDescriptorSet( in getOrAllocateDescriptorSet()
4745 angle::Result DynamicDescriptorPool::allocateNewPool(ErrorContext *context) in allocateNewPool()
4762 void DynamicDescriptorPool::releaseCachedDescriptorSet(Renderer *renderer, in releaseCachedDescriptorSet()
4782 void DynamicDescriptorPool::destroyCachedDescriptorSet(Renderer *renderer, in destroyCachedDescriptorSet()
4806 void DynamicDescriptorPool::destroyUnusedPool(Renderer *renderer, in destroyUnusedPool()
4832 void DynamicDescriptorPool::checkAndDestroyUnusedPool(Renderer *renderer) in checkAndDestroyUnusedPool()
4863 bool DynamicDescriptorPool::hasCachedDescriptorSet(const DescriptorSetDesc &desc) const in hasCachedDescriptorSet()
4870 uint32_t DynamicDescriptorPool::GetMaxSetsPerPoolForTesting() in GetMaxSetsPerPoolForTesting()
4876 void DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(uint32_t maxSetsPerPool) in SetMaxSetsPerPoolForTesting()
4882 uint32_t DynamicDescriptorPool::GetMaxSetsPerPoolMultiplierForTesting() in GetMaxSetsPerPoolMultiplierForTesting()
4888 void DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting(uint32_t maxSetsPerPoolMultiplier) in SetMaxSetsPerPoolMultiplierForTesting()
13503 DynamicDescriptorPool newDescriptorPool; in bindCachedDescriptorPool()