Home
last modified time | relevance | path

Searched refs:DynamicDescriptorPool (Results 1 – 8 of 8) sorted by relevance

/external/angle/src/tests/gl_tests/
DVulkanMultithreadingTest.cpp39 mMaxSetsPerPool = rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolForTesting(); in testSetUp()
41 rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolMultiplierForTesting(); in testSetUp()
46 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(mMaxSetsPerPool); in testTearDown()
47 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting( in testTearDown()
56 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(kMaxSetsForTesting); in limitMaxSets()
57 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting( in limitMaxSets()
DVulkanDescriptorSetTest.cpp32 mMaxSetsPerPool = rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolForTesting(); in testSetUp()
34 rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolMultiplierForTesting(); in testSetUp()
39 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(mMaxSetsPerPool); in testTearDown()
40 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting( in testTearDown()
49 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(kMaxSetsForTesting); in limitMaxSets()
50 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting( in limitMaxSets()
DVulkanUniformUpdatesTest.cpp40 mMaxSetsPerPool = rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolForTesting(); in testSetUp()
42 rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolMultiplierForTesting(); in testSetUp()
47 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(mMaxSetsPerPool); in testTearDown()
48 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting( in testTearDown()
79 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(kMaxSetsForTesting); in limitMaxSets()
80 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting( in limitMaxSets()
86 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(limit); in setExplicitMaxSetsLimit()
87 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolMultiplierForTesting( in setExplicitMaxSetsLimit()
/external/angle/src/libANGLE/renderer/vulkan/
DUtilsVk.h692 vk::DynamicDescriptorPool &descriptorPool,
709 angle::PackedEnumMap<Function, vk::DynamicDescriptorPool> mDescriptorPools;
714 std::unordered_map<vk::SamplerDesc, vk::DynamicDescriptorPool>
Dvk_helpers.cpp1166 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()
[all …]
Dvk_helpers.h436 class DynamicDescriptorPool final : angle::NonCopyable
439 DynamicDescriptorPool();
440 ~DynamicDescriptorPool();
442 DynamicDescriptorPool(DynamicDescriptorPool &&other);
443 DynamicDescriptorPool &operator=(DynamicDescriptorPool &&other);
531 using DynamicDescriptorPoolPointer = SharedPtr<DynamicDescriptorPool>;
Dvk_cache_utils.h68 class DynamicDescriptorPool; variable
1959 DescriptorSetDescAndPool(const DescriptorSetDesc &desc, DynamicDescriptorPool *pool) in DescriptorSetDescAndPool()
1989 DynamicDescriptorPool *mPool;
1993 CreateSharedDescriptorSetCacheKey(const DescriptorSetDesc &desc, DynamicDescriptorPool *pool) in CreateSharedDescriptorSetCacheKey()
DUtilsVk.cpp4887 vk::DynamicDescriptorPool &descriptorPool, in allocateDescriptorSetWithLayout()