Home
last modified time | relevance | path

Searched refs:getQueryPool (Results 1 – 7 of 7) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DQueryVk.cpp130 return contextVk->getQueryPool(mType)->allocateQuery(contextVk, &mQueryHelper.get(), in allocateQuery()
145 vk::DynamicQueryPool *queryPool = contextVk->getQueryPool(mType); in releaseQueries()
162 vk::DynamicQueryPool *queryPool = contextVk->getQueryPool(mType); in releaseStashedQueries()
334 ANGLE_TRY(contextVk->getQueryPool(mType)->allocateQuery( in begin()
DCommandGraph.h193 VkQueryPool getQueryPool() const { return mQueryPool; } in getQueryPool() function
Dvk_helpers.h420 const QueryPool &getQueryPool(size_t index) const { return mPools[index]; } in getQueryPool() function
507 const QueryPool &getQueryPool() const in getQueryPool() function
510 return mDynamicQueryPool->getQueryPool(mQueryPoolIndex); in getQueryPool()
DCommandGraph.cpp1234 auto queryID = std::make_pair(node->getQueryPool(), node->getQueryIndex()); in dumpGraphDotFile()
Dvk_helpers.cpp2708 ASSERT(getQueryPool(poolIndex).valid()); in freeQuery()
2816 const QueryPool &queryPool = getQueryPool(); in beginQueryImpl()
2823 commandBuffer->endQuery(getQueryPool(), mQuery); in endQueryImpl()
2899 const QueryPool &queryPool = getQueryPool(); in writeTimestampToPrimary()
2906 const QueryPool &queryPool = getQueryPool(); in writeTimestamp()
2974 VkResult result = getQueryPool().getResults(device, mQuery, mQueryCount, sizeof(results), in getResultImpl()
DContextVk.h376 vk::DynamicQueryPool *getQueryPool(gl::QueryType queryType);
DContextVk.cpp4611 vk::DynamicQueryPool *ContextVk::getQueryPool(gl::QueryType queryType) in getQueryPool() function in rx::ContextVk