blob: 38341163ac7ba181769760493a77066da51cf118 [file] [log] [blame]
fmalitac6765d62014-08-21 15:03:04 -07001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkPaint.h"
9#include "SkPoint.h"
halcanary33779752015-10-27 14:01:05 -070010#include "SkTextBlobRunIterator.h"
fmalita32d6b872015-11-17 11:39:32 -080011#include "SkTypeface.h"
fmalitac6765d62014-08-21 15:03:04 -070012
13#include "Test.h"
14
fmalitac6765d62014-08-21 15:03:04 -070015class TextBlobTester {
16public:
fmalita51bf9572014-08-22 07:50:45 -070017 // This unit test feeds an SkTextBlobBuilder various runs then checks to see if
18 // the result contains the provided data and merges runs when appropriate.
19 static void TestBuilder(skiatest::Reporter* reporter) {
fmalitac6765d62014-08-21 15:03:04 -070020 SkTextBlobBuilder builder;
21
22 // empty run set
halcanary96fcdcc2015-08-27 07:41:13 -070023 RunBuilderTest(reporter, builder, nullptr, 0, nullptr, 0);
fmalitac6765d62014-08-21 15:03:04 -070024
fmalita51bf9572014-08-22 07:50:45 -070025 RunDef set1[] = {
fmalitac6765d62014-08-21 15:03:04 -070026 { 128, SkTextBlob::kDefault_Positioning, 100, 100 },
27 };
fmalita51bf9572014-08-22 07:50:45 -070028 RunBuilderTest(reporter, builder, set1, SK_ARRAY_COUNT(set1), set1, SK_ARRAY_COUNT(set1));
fmalitac6765d62014-08-21 15:03:04 -070029
fmalita51bf9572014-08-22 07:50:45 -070030 RunDef set2[] = {
fmalitac6765d62014-08-21 15:03:04 -070031 { 128, SkTextBlob::kHorizontal_Positioning, 100, 100 },
32 };
fmalita51bf9572014-08-22 07:50:45 -070033 RunBuilderTest(reporter, builder, set2, SK_ARRAY_COUNT(set2), set2, SK_ARRAY_COUNT(set2));
fmalitac6765d62014-08-21 15:03:04 -070034
fmalita51bf9572014-08-22 07:50:45 -070035 RunDef set3[] = {
fmalitac6765d62014-08-21 15:03:04 -070036 { 128, SkTextBlob::kFull_Positioning, 100, 100 },
37 };
fmalita51bf9572014-08-22 07:50:45 -070038 RunBuilderTest(reporter, builder, set3, SK_ARRAY_COUNT(set3), set3, SK_ARRAY_COUNT(set3));
fmalitac6765d62014-08-21 15:03:04 -070039
fmalita51bf9572014-08-22 07:50:45 -070040 RunDef set4[] = {
fmalitac6765d62014-08-21 15:03:04 -070041 { 128, SkTextBlob::kDefault_Positioning, 100, 150 },
42 { 128, SkTextBlob::kDefault_Positioning, 100, 150 },
43 { 128, SkTextBlob::kDefault_Positioning, 100, 150 },
44 };
fmalita51bf9572014-08-22 07:50:45 -070045 RunBuilderTest(reporter, builder, set4, SK_ARRAY_COUNT(set4), set4, SK_ARRAY_COUNT(set4));
fmalitac6765d62014-08-21 15:03:04 -070046
fmalita51bf9572014-08-22 07:50:45 -070047 RunDef set5[] = {
fmalitac6765d62014-08-21 15:03:04 -070048 { 128, SkTextBlob::kHorizontal_Positioning, 100, 150 },
49 { 128, SkTextBlob::kHorizontal_Positioning, 200, 150 },
50 { 128, SkTextBlob::kHorizontal_Positioning, 300, 250 },
51 };
fmalita51bf9572014-08-22 07:50:45 -070052 RunDef mergedSet5[] = {
fmalitac6765d62014-08-21 15:03:04 -070053 { 256, SkTextBlob::kHorizontal_Positioning, 0, 150 },
54 { 128, SkTextBlob::kHorizontal_Positioning, 0, 250 },
55 };
fmalita51bf9572014-08-22 07:50:45 -070056 RunBuilderTest(reporter, builder, set5, SK_ARRAY_COUNT(set5), mergedSet5,
57 SK_ARRAY_COUNT(mergedSet5));
fmalitac6765d62014-08-21 15:03:04 -070058
fmalita51bf9572014-08-22 07:50:45 -070059 RunDef set6[] = {
fmalitac6765d62014-08-21 15:03:04 -070060 { 128, SkTextBlob::kFull_Positioning, 100, 100 },
61 { 128, SkTextBlob::kFull_Positioning, 200, 200 },
62 { 128, SkTextBlob::kFull_Positioning, 300, 300 },
63 };
fmalita51bf9572014-08-22 07:50:45 -070064 RunDef mergedSet6[] = {
fmalitac6765d62014-08-21 15:03:04 -070065 { 384, SkTextBlob::kFull_Positioning, 0, 0 },
66 };
fmalita51bf9572014-08-22 07:50:45 -070067 RunBuilderTest(reporter, builder, set6, SK_ARRAY_COUNT(set6), mergedSet6,
68 SK_ARRAY_COUNT(mergedSet6));
fmalitac6765d62014-08-21 15:03:04 -070069
fmalita51bf9572014-08-22 07:50:45 -070070 RunDef set7[] = {
fmalitac6765d62014-08-21 15:03:04 -070071 { 128, SkTextBlob::kDefault_Positioning, 100, 150 },
72 { 128, SkTextBlob::kDefault_Positioning, 100, 150 },
73 { 128, SkTextBlob::kHorizontal_Positioning, 100, 150 },
74 { 128, SkTextBlob::kHorizontal_Positioning, 200, 150 },
75 { 128, SkTextBlob::kFull_Positioning, 400, 350 },
76 { 128, SkTextBlob::kFull_Positioning, 400, 350 },
77 { 128, SkTextBlob::kDefault_Positioning, 100, 450 },
78 { 128, SkTextBlob::kDefault_Positioning, 100, 450 },
79 { 128, SkTextBlob::kHorizontal_Positioning, 100, 550 },
80 { 128, SkTextBlob::kHorizontal_Positioning, 200, 650 },
81 { 128, SkTextBlob::kFull_Positioning, 400, 750 },
82 { 128, SkTextBlob::kFull_Positioning, 400, 850 },
83 };
fmalita51bf9572014-08-22 07:50:45 -070084 RunDef mergedSet7[] = {
fmalitac6765d62014-08-21 15:03:04 -070085 { 128, SkTextBlob::kDefault_Positioning, 100, 150 },
86 { 128, SkTextBlob::kDefault_Positioning, 100, 150 },
87 { 256, SkTextBlob::kHorizontal_Positioning, 0, 150 },
88 { 256, SkTextBlob::kFull_Positioning, 0, 0 },
89 { 128, SkTextBlob::kDefault_Positioning, 100, 450 },
90 { 128, SkTextBlob::kDefault_Positioning, 100, 450 },
91 { 128, SkTextBlob::kHorizontal_Positioning, 0, 550 },
92 { 128, SkTextBlob::kHorizontal_Positioning, 0, 650 },
93 { 256, SkTextBlob::kFull_Positioning, 0, 0 },
94 };
fmalita51bf9572014-08-22 07:50:45 -070095 RunBuilderTest(reporter, builder, set7, SK_ARRAY_COUNT(set7), mergedSet7,
96 SK_ARRAY_COUNT(mergedSet7));
97 }
98
99 // This unit test verifies blob bounds computation.
100 static void TestBounds(skiatest::Reporter* reporter) {
101 SkTextBlobBuilder builder;
102 SkPaint font;
103 font.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
104
105 // Explicit bounds.
106 {
fmalita37283c22016-09-13 10:00:23 -0700107 sk_sp<SkTextBlob> blob(builder.make());
Florin Malita3a9a7a32017-03-13 09:03:24 -0400108 REPORTER_ASSERT(reporter, !blob);
fmalita51bf9572014-08-22 07:50:45 -0700109 }
110
111 {
112 SkRect r1 = SkRect::MakeXYWH(10, 10, 20, 20);
113 builder.allocRun(font, 16, 0, 0, &r1);
fmalita37283c22016-09-13 10:00:23 -0700114 sk_sp<SkTextBlob> blob(builder.make());
fmalita51bf9572014-08-22 07:50:45 -0700115 REPORTER_ASSERT(reporter, blob->bounds() == r1);
116 }
117
118 {
119 SkRect r1 = SkRect::MakeXYWH(10, 10, 20, 20);
120 builder.allocRunPosH(font, 16, 0, &r1);
fmalita37283c22016-09-13 10:00:23 -0700121 sk_sp<SkTextBlob> blob(builder.make());
fmalita51bf9572014-08-22 07:50:45 -0700122 REPORTER_ASSERT(reporter, blob->bounds() == r1);
123 }
124
125 {
126 SkRect r1 = SkRect::MakeXYWH(10, 10, 20, 20);
127 builder.allocRunPos(font, 16, &r1);
fmalita37283c22016-09-13 10:00:23 -0700128 sk_sp<SkTextBlob> blob(builder.make());
fmalita51bf9572014-08-22 07:50:45 -0700129 REPORTER_ASSERT(reporter, blob->bounds() == r1);
130 }
131
132 {
133 SkRect r1 = SkRect::MakeXYWH(10, 10, 20, 20);
134 SkRect r2 = SkRect::MakeXYWH(15, 20, 50, 50);
135 SkRect r3 = SkRect::MakeXYWH(0, 5, 10, 5);
136
137 builder.allocRun(font, 16, 0, 0, &r1);
138 builder.allocRunPosH(font, 16, 0, &r2);
139 builder.allocRunPos(font, 16, &r3);
140
fmalita37283c22016-09-13 10:00:23 -0700141 sk_sp<SkTextBlob> blob(builder.make());
fmalita51bf9572014-08-22 07:50:45 -0700142 REPORTER_ASSERT(reporter, blob->bounds() == SkRect::MakeXYWH(0, 5, 65, 65));
143 }
144
145 {
fmalita37283c22016-09-13 10:00:23 -0700146 sk_sp<SkTextBlob> blob(builder.make());
Florin Malita3a9a7a32017-03-13 09:03:24 -0400147 REPORTER_ASSERT(reporter, !blob);
fmalita51bf9572014-08-22 07:50:45 -0700148 }
149
150 // Implicit bounds
fmalita9ae8fe12015-10-13 08:59:23 -0700151
152 {
153 // Exercise the empty bounds path, and ensure that RunRecord-aligned pos buffers
154 // don't trigger asserts (http://crbug.com/542643).
155 SkPaint p;
156 p.setTextSize(0);
fmalita0b01da72015-10-14 08:11:40 -0700157 p.setTextEncoding(SkPaint::kUTF8_TextEncoding);
fmalita9ae8fe12015-10-13 08:59:23 -0700158
159 const char* txt = "BOOO";
fmalita0b01da72015-10-14 08:11:40 -0700160 const size_t txtLen = strlen(txt);
161 const int glyphCount = p.textToGlyphs(txt, txtLen, nullptr);
162
163 p.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
164 const SkTextBlobBuilder::RunBuffer& buffer = builder.allocRunPos(p, glyphCount);
165
166 p.setTextEncoding(SkPaint::kUTF8_TextEncoding);
167 p.textToGlyphs(txt, txtLen, buffer.glyphs);
168
169 memset(buffer.pos, 0, sizeof(SkScalar) * glyphCount * 2);
fmalita37283c22016-09-13 10:00:23 -0700170 sk_sp<SkTextBlob> blob(builder.make());
fmalita9ae8fe12015-10-13 08:59:23 -0700171 REPORTER_ASSERT(reporter, blob->bounds().isEmpty());
172 }
fmalitac6765d62014-08-21 15:03:04 -0700173 }
174
fmalita32d6b872015-11-17 11:39:32 -0800175 // Verify that text-related properties are captured in run paints.
176 static void TestPaintProps(skiatest::Reporter* reporter) {
177 SkPaint font;
178 font.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
179
fmalita32d6b872015-11-17 11:39:32 -0800180 // Kitchen sink font.
181 font.setTextSize(42);
182 font.setTextScaleX(4.2f);
bungeman13b9c952016-05-12 10:09:30 -0700183 font.setTypeface(SkTypeface::MakeDefault());
fmalita32d6b872015-11-17 11:39:32 -0800184 font.setTextSkewX(0.42f);
185 font.setTextAlign(SkPaint::kCenter_Align);
186 font.setHinting(SkPaint::kFull_Hinting);
187 font.setAntiAlias(true);
fmalita32d6b872015-11-17 11:39:32 -0800188 font.setFakeBoldText(true);
189 font.setLinearText(true);
190 font.setSubpixelText(true);
191 font.setDevKernText(true);
192 font.setLCDRenderText(true);
193 font.setEmbeddedBitmapText(true);
194 font.setAutohinted(true);
195 font.setVerticalText(true);
196 font.setFlags(font.getFlags() | SkPaint::kGenA8FromLCD_Flag);
197
198 // Ensure we didn't pick default values by mistake.
199 SkPaint defaultPaint;
200 REPORTER_ASSERT(reporter, defaultPaint.getTextSize() != font.getTextSize());
201 REPORTER_ASSERT(reporter, defaultPaint.getTextScaleX() != font.getTextScaleX());
202 REPORTER_ASSERT(reporter, defaultPaint.getTypeface() != font.getTypeface());
203 REPORTER_ASSERT(reporter, defaultPaint.getTextSkewX() != font.getTextSkewX());
204 REPORTER_ASSERT(reporter, defaultPaint.getTextAlign() != font.getTextAlign());
205 REPORTER_ASSERT(reporter, defaultPaint.getHinting() != font.getHinting());
206 REPORTER_ASSERT(reporter, defaultPaint.isAntiAlias() != font.isAntiAlias());
fmalita32d6b872015-11-17 11:39:32 -0800207 REPORTER_ASSERT(reporter, defaultPaint.isFakeBoldText() != font.isFakeBoldText());
208 REPORTER_ASSERT(reporter, defaultPaint.isLinearText() != font.isLinearText());
209 REPORTER_ASSERT(reporter, defaultPaint.isSubpixelText() != font.isSubpixelText());
210 REPORTER_ASSERT(reporter, defaultPaint.isDevKernText() != font.isDevKernText());
211 REPORTER_ASSERT(reporter, defaultPaint.isLCDRenderText() != font.isLCDRenderText());
212 REPORTER_ASSERT(reporter, defaultPaint.isEmbeddedBitmapText() != font.isEmbeddedBitmapText());
213 REPORTER_ASSERT(reporter, defaultPaint.isAutohinted() != font.isAutohinted());
214 REPORTER_ASSERT(reporter, defaultPaint.isVerticalText() != font.isVerticalText());
215 REPORTER_ASSERT(reporter, (defaultPaint.getFlags() & SkPaint::kGenA8FromLCD_Flag) !=
216 (font.getFlags() & SkPaint::kGenA8FromLCD_Flag));
217
218 SkTextBlobBuilder builder;
219 AddRun(font, 1, SkTextBlob::kDefault_Positioning, SkPoint::Make(0, 0), builder);
220 AddRun(font, 1, SkTextBlob::kHorizontal_Positioning, SkPoint::Make(0, 0), builder);
221 AddRun(font, 1, SkTextBlob::kFull_Positioning, SkPoint::Make(0, 0), builder);
fmalita37283c22016-09-13 10:00:23 -0700222 sk_sp<SkTextBlob> blob(builder.make());
fmalita32d6b872015-11-17 11:39:32 -0800223
fmalita37283c22016-09-13 10:00:23 -0700224 SkTextBlobRunIterator it(blob.get());
fmalita32d6b872015-11-17 11:39:32 -0800225 while (!it.done()) {
226 SkPaint paint;
227 it.applyFontToPaint(&paint);
228
229 REPORTER_ASSERT(reporter, paint.getTextSize() == font.getTextSize());
230 REPORTER_ASSERT(reporter, paint.getTextScaleX() == font.getTextScaleX());
231 REPORTER_ASSERT(reporter, paint.getTypeface() == font.getTypeface());
232 REPORTER_ASSERT(reporter, paint.getTextSkewX() == font.getTextSkewX());
233 REPORTER_ASSERT(reporter, paint.getTextAlign() == font.getTextAlign());
234 REPORTER_ASSERT(reporter, paint.getHinting() == font.getHinting());
235 REPORTER_ASSERT(reporter, paint.isAntiAlias() == font.isAntiAlias());
fmalita32d6b872015-11-17 11:39:32 -0800236 REPORTER_ASSERT(reporter, paint.isFakeBoldText() == font.isFakeBoldText());
237 REPORTER_ASSERT(reporter, paint.isLinearText() == font.isLinearText());
238 REPORTER_ASSERT(reporter, paint.isSubpixelText() == font.isSubpixelText());
239 REPORTER_ASSERT(reporter, paint.isDevKernText() == font.isDevKernText());
240 REPORTER_ASSERT(reporter, paint.isLCDRenderText() == font.isLCDRenderText());
241 REPORTER_ASSERT(reporter, paint.isEmbeddedBitmapText() == font.isEmbeddedBitmapText());
242 REPORTER_ASSERT(reporter, paint.isAutohinted() == font.isAutohinted());
243 REPORTER_ASSERT(reporter, paint.isVerticalText() == font.isVerticalText());
244 REPORTER_ASSERT(reporter, (paint.getFlags() & SkPaint::kGenA8FromLCD_Flag) ==
245 (font.getFlags() & SkPaint::kGenA8FromLCD_Flag));
246
247 it.next();
248 }
249
250 }
251
fmalitac6765d62014-08-21 15:03:04 -0700252private:
253 struct RunDef {
254 unsigned count;
255 SkTextBlob::GlyphPositioning pos;
256 SkScalar x, y;
257 };
258
fmalita51bf9572014-08-22 07:50:45 -0700259 static void RunBuilderTest(skiatest::Reporter* reporter, SkTextBlobBuilder& builder,
fmalitac6765d62014-08-21 15:03:04 -0700260 const RunDef in[], unsigned inCount,
261 const RunDef out[], unsigned outCount) {
fmalita51bf9572014-08-22 07:50:45 -0700262 SkPaint font;
263 font.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
264
fmalitac6765d62014-08-21 15:03:04 -0700265 unsigned glyphCount = 0;
266 unsigned posCount = 0;
267
268 for (unsigned i = 0; i < inCount; ++i) {
fmalita51bf9572014-08-22 07:50:45 -0700269 AddRun(font, in[i].count, in[i].pos, SkPoint::Make(in[i].x, in[i].y), builder);
fmalitac6765d62014-08-21 15:03:04 -0700270 glyphCount += in[i].count;
271 posCount += in[i].count * in[i].pos;
272 }
273
fmalita37283c22016-09-13 10:00:23 -0700274 sk_sp<SkTextBlob> blob(builder.make());
Florin Malita3a9a7a32017-03-13 09:03:24 -0400275 REPORTER_ASSERT(reporter, (inCount > 0) == SkToBool(blob));
276 if (!blob) {
277 return;
278 }
fmalitac6765d62014-08-21 15:03:04 -0700279
fmalita37283c22016-09-13 10:00:23 -0700280 SkTextBlobRunIterator it(blob.get());
fmalitac6765d62014-08-21 15:03:04 -0700281 for (unsigned i = 0; i < outCount; ++i) {
282 REPORTER_ASSERT(reporter, !it.done());
283 REPORTER_ASSERT(reporter, out[i].pos == it.positioning());
284 REPORTER_ASSERT(reporter, out[i].count == it.glyphCount());
285 if (SkTextBlob::kDefault_Positioning == out[i].pos) {
286 REPORTER_ASSERT(reporter, out[i].x == it.offset().x());
287 REPORTER_ASSERT(reporter, out[i].y == it.offset().y());
288 } else if (SkTextBlob::kHorizontal_Positioning == out[i].pos) {
289 REPORTER_ASSERT(reporter, out[i].y == it.offset().y());
290 }
291
292 for (unsigned k = 0; k < it.glyphCount(); ++k) {
293 REPORTER_ASSERT(reporter, k % 128 == it.glyphs()[k]);
294 if (SkTextBlob::kHorizontal_Positioning == it.positioning()) {
295 REPORTER_ASSERT(reporter, SkIntToScalar(k % 128) == it.pos()[k]);
296 } else if (SkTextBlob::kFull_Positioning == it.positioning()) {
297 REPORTER_ASSERT(reporter, SkIntToScalar(k % 128) == it.pos()[k * 2]);
298 REPORTER_ASSERT(reporter, -SkIntToScalar(k % 128) == it.pos()[k * 2 + 1]);
299 }
300 }
301
302 it.next();
303 }
304
305 REPORTER_ASSERT(reporter, it.done());
306 }
307
fmalita51bf9572014-08-22 07:50:45 -0700308 static void AddRun(const SkPaint& font, int count, SkTextBlob::GlyphPositioning pos,
fmalitac6765d62014-08-21 15:03:04 -0700309 const SkPoint& offset, SkTextBlobBuilder& builder,
halcanary96fcdcc2015-08-27 07:41:13 -0700310 const SkRect* bounds = nullptr) {
fmalitac6765d62014-08-21 15:03:04 -0700311 switch (pos) {
312 case SkTextBlob::kDefault_Positioning: {
313 const SkTextBlobBuilder::RunBuffer& rb = builder.allocRun(font, count, offset.x(),
314 offset.y(), bounds);
315 for (int i = 0; i < count; ++i) {
316 rb.glyphs[i] = i;
317 }
318 } break;
319 case SkTextBlob::kHorizontal_Positioning: {
320 const SkTextBlobBuilder::RunBuffer& rb = builder.allocRunPosH(font, count, offset.y(),
321 bounds);
322 for (int i = 0; i < count; ++i) {
323 rb.glyphs[i] = i;
324 rb.pos[i] = SkIntToScalar(i);
325 }
326 } break;
327 case SkTextBlob::kFull_Positioning: {
328 const SkTextBlobBuilder::RunBuffer& rb = builder.allocRunPos(font, count, bounds);
329 for (int i = 0; i < count; ++i) {
330 rb.glyphs[i] = i;
331 rb.pos[i * 2] = SkIntToScalar(i);
332 rb.pos[i * 2 + 1] = -SkIntToScalar(i);
333 }
334 } break;
335 default:
336 SkFAIL("unhandled positioning value");
337 }
338 }
339};
340
341DEF_TEST(TextBlob_builder, reporter) {
fmalita51bf9572014-08-22 07:50:45 -0700342 TextBlobTester::TestBuilder(reporter);
343 TextBlobTester::TestBounds(reporter);
fmalitac6765d62014-08-21 15:03:04 -0700344}
fmalita32d6b872015-11-17 11:39:32 -0800345
346DEF_TEST(TextBlob_paint, reporter) {
347 TextBlobTester::TestPaintProps(reporter);
348}
halcanary4f0a23a2016-08-30 11:58:33 -0700349
350DEF_TEST(TextBlob_extended, reporter) {
351 SkTextBlobBuilder textBlobBuilder;
352 SkPaint paint;
353 const char text1[] = "Foo";
354 const char text2[] = "Bar";
355
356 int glyphCount = paint.textToGlyphs(text1, strlen(text1), nullptr);
357 SkAutoTMalloc<uint16_t> glyphs(glyphCount);
358 (void)paint.textToGlyphs(text1, strlen(text1), glyphs.get());
359 paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
360
361 auto run = textBlobBuilder.allocRunText(
362 paint, glyphCount, 0, 0, SkToInt(strlen(text2)), SkString(), nullptr);
363 memcpy(run.glyphs, glyphs.get(), sizeof(uint16_t) * glyphCount);
364 memcpy(run.utf8text, text2, strlen(text2));
365 for (int i = 0; i < glyphCount; ++i) {
366 run.clusters[i] = SkTMin(SkToU32(i), SkToU32(strlen(text2)));
367 }
fmalita37283c22016-09-13 10:00:23 -0700368 sk_sp<SkTextBlob> blob(textBlobBuilder.make());
halcanary4f0a23a2016-08-30 11:58:33 -0700369 REPORTER_ASSERT(reporter, blob);
370
371 for (SkTextBlobRunIterator it(blob.get()); !it.done(); it.next()) {
372 REPORTER_ASSERT(reporter, it.glyphCount() == (uint32_t)glyphCount);
373 for (uint32_t i = 0; i < it.glyphCount(); ++i) {
374 REPORTER_ASSERT(reporter, it.glyphs()[i] == glyphs[i]);
375 }
376 REPORTER_ASSERT(reporter, SkTextBlob::kDefault_Positioning == it.positioning());
377 REPORTER_ASSERT(reporter, (SkPoint{0.0f, 0.0f}) == it.offset());
378 REPORTER_ASSERT(reporter, it.textSize() > 0);
379 REPORTER_ASSERT(reporter, it.clusters());
380 for (uint32_t i = 0; i < it.glyphCount(); ++i) {
381 REPORTER_ASSERT(reporter, i == it.clusters()[i]);
382 }
383 REPORTER_ASSERT(reporter, 0 == strncmp(text2, it.text(), it.textSize()));
384 }
385}