2018-06-06 17:45:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SkGlyphRun.h"
|
|
|
|
|
2018-06-18 23:13:37 +00:00
|
|
|
#include "SkTextBlob.h"
|
|
|
|
|
2018-06-06 17:45:53 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
2018-06-18 23:13:37 +00:00
|
|
|
DEF_TEST(GlyphSetBasic, reporter) {
|
|
|
|
SkGlyphSet set;
|
|
|
|
|
|
|
|
std::vector<SkGlyphID> unique;
|
|
|
|
|
|
|
|
set.reuse(10, &unique);
|
|
|
|
REPORTER_ASSERT(reporter, set.add(7) == 0);
|
|
|
|
REPORTER_ASSERT(reporter, set.add(3) == 1);
|
|
|
|
set.reuse(10, &unique);
|
|
|
|
REPORTER_ASSERT(reporter, set.add(5) == 0);
|
|
|
|
REPORTER_ASSERT(reporter, set.add(8) == 1);
|
|
|
|
REPORTER_ASSERT(reporter, set.add(3) == 2);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, unique.size() == 5);
|
|
|
|
REPORTER_ASSERT(reporter, unique[0] == 7);
|
|
|
|
REPORTER_ASSERT(reporter, unique[1] == 3);
|
|
|
|
REPORTER_ASSERT(reporter, unique[2] == 5);
|
|
|
|
REPORTER_ASSERT(reporter, unique[3] == 8);
|
|
|
|
REPORTER_ASSERT(reporter, unique[4] == 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(GlyphRunBasic, reporter) {
|
2018-06-06 17:45:53 +00:00
|
|
|
SkGlyphID glyphs[] = {100, 3, 240, 3, 234, 111, 3, 4, 10, 11};
|
|
|
|
uint16_t count = SK_ARRAY_COUNT(glyphs);
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
|
|
|
|
|
2018-06-07 16:44:09 +00:00
|
|
|
SkGlyphRunBuilder builder;
|
|
|
|
builder.prepareDrawText(paint, glyphs, count, SkPoint::Make(0, 0));
|
2018-06-18 23:13:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(GlyphRunBlob, reporter) {
|
2018-06-22 21:05:04 +00:00
|
|
|
constexpr uint16_t count = 5;
|
|
|
|
constexpr int runCount = 2;
|
2018-06-18 23:13:37 +00:00
|
|
|
|
|
|
|
auto tf = SkTypeface::MakeFromName("monospace", SkFontStyle());
|
|
|
|
|
|
|
|
SkPaint font;
|
|
|
|
font.setTypeface(tf);
|
|
|
|
font.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
|
|
|
|
font.setTextAlign(SkPaint::kLeft_Align);
|
|
|
|
font.setStyle(SkPaint::kFill_Style);
|
|
|
|
font.setHinting(SkPaint::kNormal_Hinting);
|
|
|
|
font.setTextSize(1u);
|
|
|
|
|
|
|
|
SkTextBlobBuilder blobBuilder;
|
2018-06-22 21:05:04 +00:00
|
|
|
for (int runNum = 0; runNum < runCount; runNum++) {
|
2018-06-18 23:13:37 +00:00
|
|
|
const auto& runBuffer = blobBuilder.allocRunPosH(font, count, runNum);
|
|
|
|
SkASSERT(runBuffer.utf8text == nullptr);
|
|
|
|
SkASSERT(runBuffer.clusters == nullptr);
|
|
|
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
2018-06-22 21:05:04 +00:00
|
|
|
runBuffer.glyphs[i] = static_cast<SkGlyphID>(i + runNum * count);
|
|
|
|
runBuffer.pos[i] = SkIntToScalar(i + runNum * count);
|
2018-06-18 23:13:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto blob = blobBuilder.make();
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
|
|
|
|
|
|
|
|
SkGlyphRunBuilder runBuilder;
|
2018-06-28 12:00:35 +00:00
|
|
|
runBuilder.prepareTextBlob(font, *blob, SkPoint::Make(0, 0));
|
2018-06-18 23:13:37 +00:00
|
|
|
|
|
|
|
auto runList = runBuilder.useGlyphRunList();
|
2018-06-04 19:49:15 +00:00
|
|
|
|
2018-06-22 21:05:04 +00:00
|
|
|
REPORTER_ASSERT(reporter, runList->size() == runCount);
|
|
|
|
int runIndex = 0;
|
2018-06-18 23:13:37 +00:00
|
|
|
for (auto& run : *runList) {
|
2018-06-22 21:05:04 +00:00
|
|
|
REPORTER_ASSERT(reporter, run.runSize() == count);
|
|
|
|
REPORTER_ASSERT(reporter, run.uniqueSize() == count);
|
|
|
|
|
|
|
|
int index = 0;
|
|
|
|
for (auto p : run.positions()) {
|
|
|
|
if (p.x() != runIndex * count + index) {
|
|
|
|
ERRORF(reporter, "x: %g != k: %d", p.x(), runIndex * count + index);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
runIndex += 1;
|
2018-06-18 23:13:37 +00:00
|
|
|
}
|
2018-06-28 12:00:35 +00:00
|
|
|
}
|