279c786409
Why have two names if we can get away with one? This kills off sk_parallel_for_thread_count(), which was only used to avoid forcing a deadlock in OncePtrTest on multicore machines in singlethreaded mode... a really niche use case. Instead just don't explicitly force a race. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1552093002 Review URL: https://codereview.chromium.org/1552093002
23 lines
543 B
C++
23 lines
543 B
C++
/*
|
|
* Copyright 2012 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "PathOpsExtendedTest.h"
|
|
#include "PathOpsThreadedCommon.h"
|
|
#include "SkTaskGroup.h"
|
|
|
|
PathOpsThreadedTestRunner::~PathOpsThreadedTestRunner() {
|
|
for (int index = 0; index < fRunnables.count(); index++) {
|
|
delete fRunnables[index];
|
|
}
|
|
}
|
|
|
|
void PathOpsThreadedTestRunner::render() {
|
|
SkTaskGroup().batch(fRunnables.count(), [&](int i) {
|
|
fRunnables[i]->run();
|
|
});
|
|
}
|