Home
last modified time | relevance | path

Searched refs:lastCompletedSerial (Results 1 – 3 of 3) 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()
168 bool usedInRunningCommands(Serial lastCompletedSerial) const in usedInRunningCommands() argument
170 return mUse.usedInRunningCommands(lastCompletedSerial); in usedInRunningCommands()
174 bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse() argument
176 return mUse.isCurrentlyInUse(lastCompletedSerial); in isCurrentlyInUse()
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()
DContextVk.cpp1796 Serial lastCompletedSerial = getLastCompletedQueueSerial(); in checkCompletedGpuEvents() local
1801 if (eventQuery.queryHelper.getStoredQueueSerial() > lastCompletedSerial) in checkCompletedGpuEvents()