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.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/core/SkGlyphRun.h"
|
2018-06-06 17:45:53 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTextBlob.h"
|
|
|
|
#include "tests/Test.h"
|
2018-06-06 17:45:53 +00:00
|
|
|
|
2018-09-19 15:31:27 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
|
|
|
2018-07-09 21:06:09 +00:00
|
|
|
DEF_TEST(GlyphRunGlyphIDSetBasic, reporter) {
|
|
|
|
SkGlyphID glyphs[] = {100, 3, 240, 3, 234};
|
|
|
|
auto glyphIDs = SkSpan<const SkGlyphID>(glyphs, SK_ARRAY_COUNT(glyphs));
|
|
|
|
int universeSize = 1000;
|
|
|
|
SkGlyphID uniqueGlyphs[SK_ARRAY_COUNT(glyphs)];
|
|
|
|
uint16_t denseIndices[SK_ARRAY_COUNT(glyphs)];
|
|
|
|
|
|
|
|
SkGlyphIDSet gs;
|
|
|
|
auto uniqueGlyphIDs = gs.uniquifyGlyphIDs(universeSize, glyphIDs, uniqueGlyphs, denseIndices);
|
|
|
|
|
|
|
|
std::vector<SkGlyphID> test{uniqueGlyphIDs.begin(), uniqueGlyphIDs.end()};
|
|
|
|
std::sort(test.begin(), test.end());
|
|
|
|
auto newEnd = std::unique(test.begin(), test.end());
|
2018-07-09 21:06:09 +00:00
|
|
|
REPORTER_ASSERT(reporter, uniqueGlyphIDs.size() == (size_t)(newEnd - test.begin()));
|
2018-07-09 21:06:09 +00:00
|
|
|
REPORTER_ASSERT(reporter, uniqueGlyphIDs.size() == 4);
|
|
|
|
{
|
|
|
|
uint16_t answer[] = {0, 1, 2, 1, 3};
|
|
|
|
REPORTER_ASSERT(reporter,
|
|
|
|
std::equal(answer, std::end(answer), denseIndices));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SkGlyphID answer[] = {100, 3, 240, 234};
|
|
|
|
REPORTER_ASSERT(reporter,
|
|
|
|
std::equal(answer, std::end(answer), uniqueGlyphs));
|
|
|
|
}
|
2018-06-18 23:13:37 +00:00
|
|
|
}
|
|
|
|
|
2018-12-20 16:18:24 +00:00
|
|
|
#if 0 // should we revitalize this by consing up a device for drawTextBlob() ?
|
2018-07-12 19:30:35 +00:00
|
|
|
DEF_TEST(GlyphRunBlob, reporter) {
|
|
|
|
constexpr uint16_t count = 5;
|
|
|
|
constexpr int runCount = 2;
|
|
|
|
|
|
|
|
auto tf = SkTypeface::MakeFromName("monospace", SkFontStyle());
|
|
|
|
|
2018-11-21 20:10:08 +00:00
|
|
|
SkFont font;
|
2018-07-12 19:30:35 +00:00
|
|
|
font.setTypeface(tf);
|
2019-05-07 20:50:29 +00:00
|
|
|
font.setHinting(SkFontHinting::kNormal);
|
2018-11-21 20:10:08 +00:00
|
|
|
font.setSize(1u);
|
2018-07-12 19:30:35 +00:00
|
|
|
|
|
|
|
SkTextBlobBuilder blobBuilder;
|
|
|
|
for (int runNum = 0; runNum < runCount; runNum++) {
|
|
|
|
const auto& runBuffer = blobBuilder.allocRunPosH(font, count, runNum);
|
|
|
|
SkASSERT(runBuffer.utf8text == nullptr);
|
|
|
|
SkASSERT(runBuffer.clusters == nullptr);
|
|
|
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
runBuffer.glyphs[i] = static_cast<SkGlyphID>(i + runNum * count);
|
|
|
|
runBuffer.pos[i] = SkIntToScalar(i + runNum * count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto blob = blobBuilder.make();
|
|
|
|
|
|
|
|
SkGlyphRunBuilder runBuilder;
|
2018-11-21 20:10:08 +00:00
|
|
|
SkPaint legacy_paint;
|
|
|
|
font.LEGACY_applyToPaint(&legacy_paint);
|
|
|
|
runBuilder.drawTextBlob(legacy_paint, *blob, SkPoint::Make(0, 0));
|
2018-07-12 19:30:35 +00:00
|
|
|
|
|
|
|
auto runList = runBuilder.useGlyphRunList();
|
|
|
|
|
2018-07-26 20:54:18 +00:00
|
|
|
REPORTER_ASSERT(reporter, runList.size() == runCount);
|
2018-07-12 19:30:35 +00:00
|
|
|
int runIndex = 0;
|
2018-07-26 20:54:18 +00:00
|
|
|
for (auto& run : runList) {
|
2018-07-12 19:30:35 +00:00
|
|
|
REPORTER_ASSERT(reporter, run.runSize() == 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-12-20 16:18:24 +00:00
|
|
|
#endif
|