Home
last modified time | relevance | path

Searched refs:lastCompletedSerial (Results 1 – 6 of 6) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DResourceVk.h95 ANGLE_INLINE bool usedInRunningCommands(Serial lastCompletedSerial) const in usedInRunningCommands() argument
98 return mUse->serial > lastCompletedSerial; in usedInRunningCommands()
101 ANGLE_INLINE bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse() argument
103 return usedInRecordedCommands() || usedInRunningCommands(lastCompletedSerial); in isCurrentlyInUse()
172 bool usedInRunningCommands(Serial lastCompletedSerial) const in usedInRunningCommands() argument
174 return mUse.usedInRunningCommands(lastCompletedSerial); in usedInRunningCommands()
178 bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse() argument
180 return mUse.isCurrentlyInUse(lastCompletedSerial); in isCurrentlyInUse()
DQueryVk.cpp453 bool QueryVk::isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse()
457 if (mQueryHelper.get().isCurrentlyInUse(lastCompletedSerial)) in isCurrentlyInUse()
464 if (query.get().isCurrentlyInUse(lastCompletedSerial)) in isCurrentlyInUse()
475 Serial lastCompletedSerial = contextVk->getLastCompletedQueueSerial(); in finishRunningCommands() local
477 if (mQueryHelper.get().usedInRunningCommands(lastCompletedSerial)) in finishRunningCommands()
480 lastCompletedSerial = contextVk->getLastCompletedQueueSerial(); in finishRunningCommands()
485 if (query.get().usedInRunningCommands(lastCompletedSerial)) in finishRunningCommands()
488 lastCompletedSerial = contextVk->getLastCompletedQueueSerial(); in finishRunningCommands()
DCommandGraph.h362 ANGLE_INLINE bool hasRunningCommands(Serial lastCompletedSerial) const in hasRunningCommands() argument
365 return mUse->serial > lastCompletedSerial; in hasRunningCommands()
368 ANGLE_INLINE bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse() argument
370 return hasRecordedCommands() || hasRunningCommands(lastCompletedSerial); in isCurrentlyInUse()
444 bool hasRunningCommands(Serial lastCompletedSerial) const in hasRunningCommands() argument
446 return mUse.hasRunningCommands(lastCompletedSerial); in hasRunningCommands()
450 bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse() argument
452 return mUse.isCurrentlyInUse(lastCompletedSerial); in isCurrentlyInUse()
DQueryVk.h53 bool isCurrentlyInUse(Serial lastCompletedSerial) const;
DContextVk.cpp2422 Serial lastCompletedSerial = getLastCompletedQueueSerial(); in checkCompletedGpuEvents() local
2427 if (eventQuery.queryHelper.usedInRunningCommands(lastCompletedSerial)) in checkCompletedGpuEvents()
Dvk_helpers.cpp2534 Serial lastCompletedSerial = contextVk->getLastCompletedQueueSerial(); in allocateNewPool() local
2538 !mDescriptorPools[poolIndex]->get().isCurrentlyInUse(lastCompletedSerial)) in allocateNewPool()