Home
last modified time | relevance | path

Searched refs:mMaxSetsPerPool (Results 1 – 5 of 5) sorted by relevance

/external/angle/src/tests/gl_tests/
DVulkanDescriptorSetTest.cpp31 mMaxSetsPerPool = rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolForTesting(); in testSetUp()
38 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(mMaxSetsPerPool); in testTearDown()
54 uint32_t mMaxSetsPerPool; member in __anon483d33c80111::VulkanDescriptorSetTest
DVulkanMultithreadingTest.cpp40 mMaxSetsPerPool = rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolForTesting(); in testSetUp()
47 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(mMaxSetsPerPool); in testTearDown()
121 uint32_t mMaxSetsPerPool; member in angle::VulkanMultithreadingTest
DVulkanUniformUpdatesTest.cpp43 mMaxSetsPerPool = rx::vk::DynamicDescriptorPool::GetMaxSetsPerPoolForTesting(); in testSetUp()
50 rx::vk::DynamicDescriptorPool::SetMaxSetsPerPoolForTesting(mMaxSetsPerPool); in testTearDown()
90 uint32_t mMaxSetsPerPool; member in __anonb1a20db30111::VulkanUniformUpdatesTest
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp836 uint32_t DynamicDescriptorPool::mMaxSetsPerPool = 16; member in rx::vk::DynamicDescriptorPool
2463 mDescriptorPools[mCurrentPoolIndex]->get().hasCapacity(mMaxSetsPerPool))); in init()
2471 return mDescriptorPools[mCurrentPoolIndex]->get().init(contextVk, mPoolSizes, mMaxSetsPerPool); in init()
2557 if (mMaxSetsPerPool < kMaxSetsPerPoolMax) in allocateNewPool()
2559 mMaxSetsPerPool *= mMaxSetsPerPoolMultiplier; in allocateNewPool()
2562 return mDescriptorPools[mCurrentPoolIndex]->get().init(contextVk, mPoolSizes, mMaxSetsPerPool); in allocateNewPool()
2568 return mMaxSetsPerPool; in GetMaxSetsPerPoolForTesting()
2574 mMaxSetsPerPool = maxSetsPerPool; in SetMaxSetsPerPoolForTesting()
Dvk_helpers.h338 static uint32_t mMaxSetsPerPool; variable