Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
DCommandProcessor.cpp778 ASSERT(mInFlightCommands.empty() && mGarbageQueue.empty()); in destroy()
803 for (CommandBatch &batch : mInFlightCommands) in checkCompletedCommands()
831 CommandBatch &batch = mInFlightCommands[commandIndex]; in retireFinishedCommands()
843 auto beginIter = mInFlightCommands.begin(); in retireFinishedCommands()
844 mInFlightCommands.erase(beginIter, beginIter + finishedCount); in retireFinishedCommands()
923 for (CommandBatch &batch : mInFlightCommands) in handleDeviceLost()
937 mInFlightCommands.clear(); in handleDeviceLost()
942 return mInFlightCommands.empty() || mInFlightCommands[0].serial > serial; in allInFlightCommandsAreAfterSerial()
947 if (mInFlightCommands.empty()) in finishToSerial()
955 ASSERT(CommandsHaveValidOrdering(mInFlightCommands)); in finishToSerial()
[all …]
DCommandProcessor.h415 std::vector<CommandBatch> mInFlightCommands; variable