Home | History | Annotate | Download | only in dm

Lines Matching defs:serial

1384     // Kick off as much parallel work as we can, making note of any serial work we'll need to do.
1386 SkTArray<Task> serial;
1399 if (src->serial() || sink->serial()) {
1400 serial.push_back(task);
1409 // With the parallel work running, run serial tasks and tests here on main thread.
1410 for (auto task : serial) { Task::Run(task); }
1413 // Wait for any remaining parallel work to complete (including any spun off of serial tasks).