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()
335 ANGLE_TRY(contextVk->getQueryPool(mType)->allocateQuery( in begin()
DCommandGraph.h193 VkQueryPool getQueryPool() const { return mQueryPool; } in getQueryPool() function
Dvk_helpers.h333 const QueryPool &getQueryPool(size_t index) const { return getPool(index); } in getQueryPool() function
424 const QueryPool &getQueryPool() const in getQueryPool() function
427 return mDynamicQueryPool->getQueryPool(mQueryPoolIndex); in getQueryPool()
DCommandGraph.cpp1234 auto queryID = std::make_pair(node->getQueryPool(), node->getQueryIndex()); in dumpGraphDotFile()
Dvk_helpers.cpp3369 ASSERT(getQueryPool(poolIndex).valid()); in freeQuery()
3458 const QueryPool &queryPool = getQueryPool(); in beginQueryImpl()
3468 commandBuffer->endQuery(getQueryPool(), mQuery); in endQueryImpl()
3566 const QueryPool &queryPool = getQueryPool(); in writeTimestampToPrimary()
3574 const QueryPool &queryPool = getQueryPool(); in writeTimestamp()
3642 VkResult result = getQueryPool().getResults(device, mQuery, mQueryCount, sizeof(results), in getResultImpl()
DContextVk.h453 vk::DynamicQueryPool *getQueryPool(gl::QueryType queryType);
DContextVk.cpp5470 vk::DynamicQueryPool *ContextVk::getQueryPool(gl::QueryType queryType) in getQueryPool() function in rx::ContextVk