Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
DCommandProcessor.cpp354 mTasks.emplace(std::move(task)); in queueCommand()
385 if (mTasks.empty()) in processTasksImpl()
390 mWorkAvailableCondition.wait(lock, [this] { return !mTasks.empty(); }); in processTasksImpl()
393 CommandProcessorTask task(std::move(mTasks.front())); in processTasksImpl()
394 mTasks.pop(); in processTasksImpl()
521 mWorkerIdleCondition.wait(lock, [this] { return (mTasks.empty() && mWorkerThreadIdle); }); in waitForWorkComplete()
598 mWorkerIdleCondition.wait(lock, [this] { return (mTasks.empty() && mWorkerThreadIdle); }); in handleDeviceLost()
DCommandProcessor.h538 std::queue<CommandProcessorTask> mTasks; variable