Multithread SkStrike test
Change-Id: Id034c7fb35e1c0d6ae70a19d612b955d25c570af Reviewed-on: https://skia-review.googlesource.com/c/skia/+/269900 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Herb Derby <herb@google.com>
This commit is contained in:
parent
82ea0eafab
commit
251eff6f1f
@ -253,6 +253,7 @@ tests_sources = [
|
||||
"$_tests/SkSLSPIRVTest.cpp",
|
||||
"$_tests/SkShaperJSONWriterTest.cpp",
|
||||
"$_tests/SkSharedMutexTest.cpp",
|
||||
"$_tests/SkStrikeTest.cpp",
|
||||
"$_tests/SkUTFTest.cpp",
|
||||
"$_tests/SkVMTest.cpp",
|
||||
"$_tests/SkVxTest.cpp",
|
||||
|
85
tests/SkStrikeTest.cpp
Normal file
85
tests/SkStrikeTest.cpp
Normal file
@ -0,0 +1,85 @@
|
||||
/*
|
||||
* Copyright 2020 Google Inc.
|
||||
*
|
||||
* Use of this source code is governed by a BSD-style license that can be
|
||||
* found in the LICENSE file.
|
||||
*/
|
||||
|
||||
#include "include/core/SkFont.h"
|
||||
#include "include/core/SkTypeface.h"
|
||||
#include "src/core/SkStrike.h"
|
||||
#include "src/core/SkStrikeSpec.h"
|
||||
#include "src/core/SkTaskGroup.h"
|
||||
#include "tests/Test.h"
|
||||
#include "tools/ToolUtils.h"
|
||||
|
||||
#include <atomic>
|
||||
|
||||
class Barrier {
|
||||
public:
|
||||
Barrier(int threadCount) : fThreadCount(threadCount) { }
|
||||
void waitForAll() {
|
||||
fThreadCount -= 1;
|
||||
while (fThreadCount > 0) { }
|
||||
}
|
||||
|
||||
private:
|
||||
std::atomic<int> fThreadCount;
|
||||
};
|
||||
|
||||
DEF_TEST(SkStrikeMultiThread, Reporter) {
|
||||
sk_sp<SkTypeface> typeface =
|
||||
ToolUtils::create_portable_typeface("serif", SkFontStyle::Italic());
|
||||
static constexpr int kThreadCount = 4;
|
||||
|
||||
Barrier barrier{kThreadCount};
|
||||
|
||||
SkFont font;
|
||||
font.setEdging(SkFont::Edging::kAntiAlias);
|
||||
font.setSubpixel(true);
|
||||
font.setTypeface(typeface);
|
||||
|
||||
SkGlyphID glyphs['z'];
|
||||
SkPoint pos['z'];
|
||||
for (int c = ' '; c < 'z'; c++) {
|
||||
glyphs[c] = font.unicharToGlyph(c);
|
||||
pos[c] = {30.0f * c + 30, 30.0f};
|
||||
}
|
||||
constexpr size_t glyphCount = 'z' - ' ';
|
||||
auto data = SkMakeZip(glyphs, pos).subspan(SkTo<int>(' '), glyphCount);
|
||||
|
||||
SkPaint defaultPaint;
|
||||
SkStrikeSpec strikeSpec = SkStrikeSpec::MakeMask(
|
||||
font, defaultPaint, SkSurfaceProps(0, kUnknown_SkPixelGeometry),
|
||||
SkScalerContextFlags::kNone, SkMatrix::I());
|
||||
|
||||
// Make our own executor so the --threads parameter doesn't mess things up.
|
||||
auto executor = SkExecutor::MakeFIFOThreadPool(kThreadCount);
|
||||
for (int tries = 0; tries < 100; tries++) {
|
||||
SkScalerContextEffects effects;
|
||||
std::unique_ptr<SkScalerContext> ctx{
|
||||
typeface->createScalerContext(effects, &strikeSpec.descriptor())};
|
||||
SkStrike strike{strikeSpec.descriptor(), std::move(ctx)};
|
||||
|
||||
auto perThread = [&](int threadIndex) {
|
||||
barrier.waitForAll();
|
||||
|
||||
auto local = data.subspan(threadIndex * 2, data.size() - kThreadCount * 2);
|
||||
for (int i = 0; i < 100; i++) {
|
||||
SkDrawableGlyphBuffer drawable;
|
||||
SkSourceGlyphBuffer rejects;
|
||||
|
||||
drawable.ensureSize(glyphCount);
|
||||
rejects.setSource(local);
|
||||
|
||||
drawable.startDevice(rejects.source(), {0, 0}, SkMatrix::I(),
|
||||
strike.roundingSpec());
|
||||
strike.prepareForMaskDrawing(&drawable, &rejects);
|
||||
rejects.flipRejectsToSource();
|
||||
drawable.reset();
|
||||
}
|
||||
};
|
||||
|
||||
SkTaskGroup(*executor).batch(kThreadCount, perThread);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user