Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp1010 : mPoolSize(0), mCurrentPool(0), mCurrentFreeEntry(0) in DynamicallyGrowingPool()
1041 mCurrentFreeEntry = 0; in findFreeEntryPool()
1061 mCurrentFreeEntry = 0; in allocateNewEntryPool()
1105 if (mCurrentFreeEntry >= mPoolSize) in allocateQuery()
1111 uint32_t queryIndex = mCurrentFreeEntry++; in allocateQuery()
1315 if (mCurrentFreeEntry >= mPoolSize) in allocateSemaphore()
1321 semaphoreOut->init(mCurrentPool, &mPools[mCurrentPool][mCurrentFreeEntry++]); in allocateSemaphore()
Dvk_helpers.h332 uint32_t mCurrentFreeEntry; variable