blob: 5ceb8a3e7147b6cfc1c871f1133a2f80a52e373d [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
reed@google.combcb42ae2013-07-02 13:56:39 +00007
Hal Canary95e3c052017-01-11 12:44:43 -05008#include "SkAutoMalloc.h"
robertphillips@google.comb7061172013-09-06 14:16:12 +00009#include "SkBlurMask.h"
Mike Reed477fb912018-11-11 20:37:45 -050010#include "SkFont.h"
robertphillips@google.comb7061172013-09-06 14:16:12 +000011#include "SkLayerDrawLooper.h"
Mike Reed1be1f8d2018-03-14 13:01:17 -040012#include "SkMaskFilter.h"
Cary Clark60ca8672018-03-06 15:09:27 -050013#include "SkPaintPriv.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000014#include "SkPath.h"
reed@google.combcb42ae2013-07-02 13:56:39 +000015#include "SkRandom.h"
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +000016#include "SkReadBuffer.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040017#include "SkTo.h"
reed@google.combcb42ae2013-07-02 13:56:39 +000018#include "SkTypeface.h"
Hal Canaryea60b952018-08-21 11:45:46 -040019#include "SkUTF.h"
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +000020#include "SkWriteBuffer.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000021#include "Test.h"
Ethan Nicholas00543112018-07-31 09:44:36 -040022#undef ASSERT
reed@google.combcb42ae2013-07-02 13:56:39 +000023
24static size_t uni_to_utf8(const SkUnichar src[], void* dst, int count) {
25 char* u8 = (char*)dst;
26 for (int i = 0; i < count; ++i) {
Hal Canaryf107a2f2018-07-25 16:52:48 -040027 int n = SkToInt(SkUTF::ToUTF8(src[i], u8));
reed@google.combcb42ae2013-07-02 13:56:39 +000028 u8 += n;
29 }
30 return u8 - (char*)dst;
31}
32
33static size_t uni_to_utf16(const SkUnichar src[], void* dst, int count) {
34 uint16_t* u16 = (uint16_t*)dst;
35 for (int i = 0; i < count; ++i) {
Hal Canaryf107a2f2018-07-25 16:52:48 -040036 int n = SkToInt(SkUTF::ToUTF16(src[i], u16));
reed@google.combcb42ae2013-07-02 13:56:39 +000037 u16 += n;
38 }
39 return (char*)u16 - (char*)dst;
40}
41
42static size_t uni_to_utf32(const SkUnichar src[], void* dst, int count) {
43 SkUnichar* u32 = (SkUnichar*)dst;
44 if (src != u32) {
45 memcpy(u32, src, count * sizeof(SkUnichar));
46 }
47 return count * sizeof(SkUnichar);
48}
49
reed@google.combcb42ae2013-07-02 13:56:39 +000050static int find_first_zero(const uint16_t glyphs[], int count) {
51 for (int i = 0; i < count; ++i) {
52 if (0 == glyphs[i]) {
53 return i;
54 }
55 }
56 return count;
57}
58
commit-bot@chromium.orge8807f42014-03-24 23:03:11 +000059DEF_TEST(Paint_cmap, reporter) {
60 // need to implement charsToGlyphs on other backends (e.g. linux, win)
61 // before we can run this tests everywhere
62 return;
63
reed@google.combcb42ae2013-07-02 13:56:39 +000064 static const int NGLYPHS = 64;
65
66 SkUnichar src[NGLYPHS];
67 SkUnichar dst[NGLYPHS]; // used for utf8, utf16, utf32 storage
68
69 static const struct {
70 size_t (*fSeedTextProc)(const SkUnichar[], void* dst, int count);
Mike Reed97f3cc22018-12-03 09:45:17 -050071 SkTextEncoding fEncoding;
reed@google.combcb42ae2013-07-02 13:56:39 +000072 } gRec[] = {
Mike Reed97f3cc22018-12-03 09:45:17 -050073 { uni_to_utf8, kUTF8_SkTextEncoding },
74 { uni_to_utf16, kUTF16_SkTextEncoding },
75 { uni_to_utf32, kUTF32_SkTextEncoding },
reed@google.combcb42ae2013-07-02 13:56:39 +000076 };
77
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000078 SkRandom rand;
Mike Reedab8f2972018-12-05 13:20:29 -050079 SkFont font;
80 font.setTypeface(SkTypeface::MakeDefault());
81 SkTypeface* face = font.getTypeface();
reed@google.combcb42ae2013-07-02 13:56:39 +000082
83 for (int i = 0; i < 1000; ++i) {
84 // generate some random text
85 for (int j = 0; j < NGLYPHS; ++j) {
86 src[j] = ' ' + j;
87 }
88 // inject some random chars, to sometimes abort early
89 src[rand.nextU() & 63] = rand.nextU() & 0xFFF;
skia.committer@gmail.com98a19672013-07-03 07:00:57 +000090
reed@google.combcb42ae2013-07-02 13:56:39 +000091 for (size_t k = 0; k < SK_ARRAY_COUNT(gRec); ++k) {
reed@google.combcb42ae2013-07-02 13:56:39 +000092 size_t len = gRec[k].fSeedTextProc(src, dst, NGLYPHS);
skia.committer@gmail.com98a19672013-07-03 07:00:57 +000093
reed@google.combcb42ae2013-07-02 13:56:39 +000094 uint16_t glyphs0[NGLYPHS], glyphs1[NGLYPHS];
skia.committer@gmail.com98a19672013-07-03 07:00:57 +000095
Mike Reedab8f2972018-12-05 13:20:29 -050096 bool contains = font.containsText(dst, len, gRec[k].fEncoding);
97 int nglyphs = font.textToGlyphs(dst, len, gRec[k].fEncoding, glyphs0, NGLYPHS);
98 int first = face->charsToGlyphs(dst, (SkTypeface::Encoding)gRec[k].fEncoding,
99 glyphs1, NGLYPHS);
reed@google.combcb42ae2013-07-02 13:56:39 +0000100 int index = find_first_zero(glyphs1, NGLYPHS);
101
102 REPORTER_ASSERT(reporter, NGLYPHS == nglyphs);
103 REPORTER_ASSERT(reporter, index == first);
commit-bot@chromium.orge8807f42014-03-24 23:03:11 +0000104 REPORTER_ASSERT(reporter, 0 == memcmp(glyphs0, glyphs1, NGLYPHS * sizeof(uint16_t)));
reed@google.combcb42ae2013-07-02 13:56:39 +0000105 if (contains) {
106 REPORTER_ASSERT(reporter, NGLYPHS == first);
107 } else {
108 REPORTER_ASSERT(reporter, NGLYPHS > first);
109 }
110 }
111 }
112}
djsollen@google.comb44cd652011-12-01 17:09:21 +0000113
reed@google.com25b3bd52013-05-22 13:55:54 +0000114// temparary api for bicubic, just be sure we can set/clear it
reed93a12152015-03-16 10:08:34 -0700115DEF_TEST(Paint_filterQuality, reporter) {
reed@google.com9cfc83c2013-07-22 17:18:18 +0000116 SkPaint p0, p1;
skia.committer@gmail.com5c561cb2013-07-25 07:01:00 +0000117
reed93a12152015-03-16 10:08:34 -0700118 REPORTER_ASSERT(reporter, kNone_SkFilterQuality == p0.getFilterQuality());
skia.committer@gmail.com5c561cb2013-07-25 07:01:00 +0000119
reed93a12152015-03-16 10:08:34 -0700120 static const SkFilterQuality gQualitys[] = {
121 kNone_SkFilterQuality,
122 kLow_SkFilterQuality,
123 kMedium_SkFilterQuality,
124 kHigh_SkFilterQuality
reed@google.com9cfc83c2013-07-22 17:18:18 +0000125 };
reed93a12152015-03-16 10:08:34 -0700126 for (size_t i = 0; i < SK_ARRAY_COUNT(gQualitys); ++i) {
127 p0.setFilterQuality(gQualitys[i]);
128 REPORTER_ASSERT(reporter, gQualitys[i] == p0.getFilterQuality());
reed@google.com9cfc83c2013-07-22 17:18:18 +0000129 p1 = p0;
reed93a12152015-03-16 10:08:34 -0700130 REPORTER_ASSERT(reporter, gQualitys[i] == p1.getFilterQuality());
reed@google.com9cfc83c2013-07-22 17:18:18 +0000131
132 p0.reset();
reed93a12152015-03-16 10:08:34 -0700133 REPORTER_ASSERT(reporter, kNone_SkFilterQuality == p0.getFilterQuality());
reed@google.com9cfc83c2013-07-22 17:18:18 +0000134 }
reed@google.com25b3bd52013-05-22 13:55:54 +0000135}
136
commit-bot@chromium.orge8807f42014-03-24 23:03:11 +0000137DEF_TEST(Paint_copy, reporter) {
djsollen@google.comb44cd652011-12-01 17:09:21 +0000138 SkPaint paint;
139 // set a few member variables
140 paint.setStyle(SkPaint::kStrokeAndFill_Style);
djsollen@google.comb44cd652011-12-01 17:09:21 +0000141 paint.setStrokeWidth(SkIntToScalar(2));
142 // set a few pointers
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +0000143 SkLayerDrawLooper::Builder looperBuilder;
reed7b380d02016-03-21 13:25:16 -0700144 paint.setLooper(looperBuilder.detach());
Mike Reed1be1f8d2018-03-14 13:01:17 -0400145 paint.setMaskFilter(SkMaskFilter::MakeBlur(kNormal_SkBlurStyle,
reedefdfd512016-04-04 10:02:58 -0700146 SkBlurMask::ConvertRadiusToSigma(1)));
djsollen@google.comb44cd652011-12-01 17:09:21 +0000147
148 // copy the paint using the copy constructor and check they are the same
149 SkPaint copiedPaint = paint;
robertphillips@google.comb2657412013-08-07 22:36:29 +0000150 REPORTER_ASSERT(reporter, paint == copiedPaint);
djsollen@google.comb44cd652011-12-01 17:09:21 +0000151
djsollen@google.comb44cd652011-12-01 17:09:21 +0000152 // copy the paint using the equal operator and check they are the same
153 copiedPaint = paint;
robertphillips@google.comb2657412013-08-07 22:36:29 +0000154 REPORTER_ASSERT(reporter, paint == copiedPaint);
djsollen@google.comb44cd652011-12-01 17:09:21 +0000155
djsollen@google.comb44cd652011-12-01 17:09:21 +0000156 // clean the paint and check they are back to their initial states
157 SkPaint cleanPaint;
158 paint.reset();
159 copiedPaint.reset();
robertphillips@google.comb2657412013-08-07 22:36:29 +0000160 REPORTER_ASSERT(reporter, cleanPaint == paint);
161 REPORTER_ASSERT(reporter, cleanPaint == copiedPaint);
djsollen@google.comb44cd652011-12-01 17:09:21 +0000162}
reed@android.coma0f5d152009-06-22 17:38:10 +0000163
164// found and fixed for webkit: mishandling when we hit recursion limit on
165// mostly degenerate cubic flatness test
commit-bot@chromium.orge8807f42014-03-24 23:03:11 +0000166DEF_TEST(Paint_regression_cubic, reporter) {
reed@android.coma0f5d152009-06-22 17:38:10 +0000167 SkPath path, stroke;
168 SkPaint paint;
169
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000170 path.moveTo(460.2881309415525f,
171 303.250847066498f);
172 path.cubicTo(463.36378422175284f,
173 302.1169735073363f,
174 456.32239330810046f,
175 304.720354932878f,
176 453.15255460013304f,
177 305.788586869862f);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000178
reed@android.coma0f5d152009-06-22 17:38:10 +0000179 SkRect fillR, strokeR;
180 fillR = path.getBounds();
181
182 paint.setStyle(SkPaint::kStroke_Style);
183 paint.setStrokeWidth(SkIntToScalar(2));
184 paint.getFillPath(path, &stroke);
185 strokeR = stroke.getBounds();
186
187 SkRect maxR = fillR;
188 SkScalar miter = SkMaxScalar(SK_Scalar1, paint.getStrokeMiter());
189 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ?
Mike Reeddf85c382017-02-14 10:59:19 -0500190 paint.getStrokeWidth() * miter :
reed@android.coma0f5d152009-06-22 17:38:10 +0000191 paint.getStrokeWidth();
192 maxR.inset(-inset, -inset);
193
194 // test that our stroke didn't explode
195 REPORTER_ASSERT(reporter, maxR.contains(strokeR));
196}
197
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000198DEF_TEST(Paint_flattening, reporter) {
reed93a12152015-03-16 10:08:34 -0700199 const SkFilterQuality levels[] = {
200 kNone_SkFilterQuality,
201 kLow_SkFilterQuality,
202 kMedium_SkFilterQuality,
203 kHigh_SkFilterQuality,
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000204 };
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000205 const SkPaint::Cap caps[] = {
206 SkPaint::kButt_Cap,
207 SkPaint::kRound_Cap,
208 SkPaint::kSquare_Cap,
209 };
210 const SkPaint::Join joins[] = {
211 SkPaint::kMiter_Join,
212 SkPaint::kRound_Join,
213 SkPaint::kBevel_Join,
214 };
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000215 const SkPaint::Style styles[] = {
216 SkPaint::kFill_Style,
217 SkPaint::kStroke_Style,
218 SkPaint::kStrokeAndFill_Style,
219 };
220
221#define FOR_SETUP(index, array, setter) \
222 for (size_t index = 0; index < SK_ARRAY_COUNT(array); ++index) { \
Mike Reed74b76772019-01-04 14:01:06 -0500223 paint.setter(array[index]);
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000224
225 SkPaint paint;
Mike Reed74b76772019-01-04 14:01:06 -0500226 paint.setAntiAlias(true);
227
228 // we don't serialize hinting or encoding -- soon to be removed from paint
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000229
reed93a12152015-03-16 10:08:34 -0700230 FOR_SETUP(i, levels, setFilterQuality)
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000231 FOR_SETUP(l, caps, setStrokeCap)
232 FOR_SETUP(m, joins, setStrokeJoin)
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000233 FOR_SETUP(p, styles, setStyle)
234
brianosmanfad98562016-05-04 11:06:28 -0700235 SkBinaryWriteBuffer writer;
Cary Clark60ca8672018-03-06 15:09:27 -0500236 SkPaintPriv::Flatten(paint, writer);
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000237
mtkleinb4c899d2016-04-29 13:58:09 -0700238 SkAutoMalloc buf(writer.bytesWritten());
239 writer.writeToMemory(buf.get());
240 SkReadBuffer reader(buf.get(), writer.bytesWritten());
skia.committer@gmail.com667b98d2014-04-17 03:05:10 +0000241
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000242 SkPaint paint2;
Mike Reed31ba6fe2019-01-14 17:36:54 -0500243 SkPaintPriv::Unflatten(&paint2, reader, nullptr);
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000244 REPORTER_ASSERT(reporter, paint2 == paint);
245
Mike Reed74b76772019-01-04 14:01:06 -0500246 }}}}
commit-bot@chromium.org85faf502014-04-16 12:58:02 +0000247#undef FOR_SETUP
248
249}
250
djsollen@google.com46348e22013-03-04 19:47:42 +0000251// found and fixed for android: not initializing rect for string's of length 0
commit-bot@chromium.orge8807f42014-03-24 23:03:11 +0000252DEF_TEST(Paint_regression_measureText, reporter) {
djsollen@google.com46348e22013-03-04 19:47:42 +0000253
Mike Reed2e6db182018-12-15 13:45:33 -0500254 SkFont font;
255 font.setSize(12.0f);
djsollen@google.com46348e22013-03-04 19:47:42 +0000256
257 SkRect r;
258 r.setLTRB(SK_ScalarNaN, SK_ScalarNaN, SK_ScalarNaN, SK_ScalarNaN);
259
260 // test that the rect was reset
Mike Reed2e6db182018-12-15 13:45:33 -0500261 font.measureText("", 0, kUTF8_SkTextEncoding, &r);
djsollen@google.com46348e22013-03-04 19:47:42 +0000262 REPORTER_ASSERT(reporter, r.isEmpty());
263}
264
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000265#define ASSERT(expr) REPORTER_ASSERT(r, expr)
266
mtklein610a0152014-09-25 11:57:53 -0700267DEF_TEST(Paint_MoreFlattening, r) {
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000268 SkPaint paint;
269 paint.setColor(0x00AABBCC);
Hal Canaryf1921f42019-01-08 15:23:11 -0500270#ifdef SK_SUPPORT_LEGACY_PAINT_FONT_FIELDS
mtkleinee902cd2014-09-22 11:40:33 -0700271 paint.setTextScaleX(1.0f); // Default value, ignored.
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000272 paint.setTextSize(19);
Hal Canaryf1921f42019-01-08 15:23:11 -0500273#endif
reed374772b2016-10-05 17:33:02 -0700274 paint.setBlendMode(SkBlendMode::kModulate);
halcanary96fcdcc2015-08-27 07:41:13 -0700275 paint.setLooper(nullptr); // Default value, ignored.
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000276
brianosmanfad98562016-05-04 11:06:28 -0700277 SkBinaryWriteBuffer writer;
Cary Clark60ca8672018-03-06 15:09:27 -0500278 SkPaintPriv::Flatten(paint, writer);
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000279
mtkleinb4c899d2016-04-29 13:58:09 -0700280 SkAutoMalloc buf(writer.bytesWritten());
281 writer.writeToMemory(buf.get());
282 SkReadBuffer reader(buf.get(), writer.bytesWritten());
283
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000284 SkPaint other;
Mike Reed31ba6fe2019-01-14 17:36:54 -0500285 SkPaintPriv::Unflatten(&other, reader, nullptr);
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000286 ASSERT(reader.offset() == writer.bytesWritten());
287
288 // No matter the encoding, these must always hold.
289 ASSERT(other.getColor() == paint.getColor());
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000290 ASSERT(other.getLooper() == paint.getLooper());
reed374772b2016-10-05 17:33:02 -0700291 ASSERT(other.getBlendMode() == paint.getBlendMode());
commit-bot@chromium.orgaca1c012014-02-21 18:18:05 +0000292}
mtkleinfb1fe4f2014-10-07 09:26:10 -0700293
294DEF_TEST(Paint_getHash, r) {
295 // Try not to inspect the actual hash values in here.
296 // We might want to change the hash function.
297
298 SkPaint paint;
299 const uint32_t defaultHash = paint.getHash();
300
301 // Check that some arbitrary field affects the hash.
302 paint.setColor(0xFF00FF00);
303 REPORTER_ASSERT(r, paint.getHash() != defaultHash);
304 paint.setColor(SK_ColorBLACK); // Reset to default value.
305 REPORTER_ASSERT(r, paint.getHash() == defaultHash);
306
Hal Canaryf1921f42019-01-08 15:23:11 -0500307#ifdef SK_SUPPORT_LEGACY_PAINT_FONT_FIELDS
mtkleinfb1fe4f2014-10-07 09:26:10 -0700308 // SkTypeface is the first field we hash, so test it specially.
bungeman13b9c952016-05-12 10:09:30 -0700309 paint.setTypeface(SkTypeface::MakeDefault());
mtkleinfb1fe4f2014-10-07 09:26:10 -0700310 REPORTER_ASSERT(r, paint.getHash() != defaultHash);
halcanary96fcdcc2015-08-27 07:41:13 -0700311 paint.setTypeface(nullptr);
mtkleinfb1fe4f2014-10-07 09:26:10 -0700312 REPORTER_ASSERT(r, paint.getHash() == defaultHash);
Hal Canary02738a82019-01-21 18:51:32 +0000313#endif
mtkleinfb1fe4f2014-10-07 09:26:10 -0700314
315 // This is part of fBitfields, the last field we hash.
Mike Reed9edbf422018-11-07 19:54:33 -0500316 paint.setHinting(kSlight_SkFontHinting);
mtkleinfb1fe4f2014-10-07 09:26:10 -0700317 REPORTER_ASSERT(r, paint.getHash() != defaultHash);
Mike Reed9edbf422018-11-07 19:54:33 -0500318 paint.setHinting(kNormal_SkFontHinting);
mtkleinfb1fe4f2014-10-07 09:26:10 -0700319 REPORTER_ASSERT(r, paint.getHash() == defaultHash);
320}
reedf539b8c2014-11-11 12:51:33 -0800321
322#include "SkColorMatrixFilter.h"
323
324DEF_TEST(Paint_nothingToDraw, r) {
325 SkPaint paint;
326
327 REPORTER_ASSERT(r, !paint.nothingToDraw());
328 paint.setAlpha(0);
329 REPORTER_ASSERT(r, paint.nothingToDraw());
330
331 paint.setAlpha(0xFF);
reed374772b2016-10-05 17:33:02 -0700332 paint.setBlendMode(SkBlendMode::kDst);
reedf539b8c2014-11-11 12:51:33 -0800333 REPORTER_ASSERT(r, paint.nothingToDraw());
334
335 paint.setAlpha(0);
reed374772b2016-10-05 17:33:02 -0700336 paint.setBlendMode(SkBlendMode::kSrcOver);
reedf539b8c2014-11-11 12:51:33 -0800337
338 SkColorMatrix cm;
339 cm.setIdentity(); // does not change alpha
reedd053ce92016-03-22 10:17:23 -0700340 paint.setColorFilter(SkColorFilter::MakeMatrixFilterRowMajor255(cm.fMat));
reedf539b8c2014-11-11 12:51:33 -0800341 REPORTER_ASSERT(r, paint.nothingToDraw());
342
343 cm.postTranslate(0, 0, 0, 1); // wacks alpha
reedd053ce92016-03-22 10:17:23 -0700344 paint.setColorFilter(SkColorFilter::MakeMatrixFilterRowMajor255(cm.fMat));
reedf539b8c2014-11-11 12:51:33 -0800345 REPORTER_ASSERT(r, !paint.nothingToDraw());
346}
Mike Reed477fb912018-11-11 20:37:45 -0500347
Mike Reed560d5b32018-12-16 16:36:48 -0500348#ifdef SK_SUPPORT_LEGACY_PAINT_TEXTMEASURE
Mike Reed477fb912018-11-11 20:37:45 -0500349DEF_TEST(Paint_getwidths, r) {
350 SkPaint paint;
351 const char text[] = "Hamburgefons!@#!#23425,./;'[]";
352 int count = paint.countText(text, strlen(text));
353 SkAutoTArray<uint16_t> glyphStorage(count * 2);
354 uint16_t* glyphs = glyphStorage.get();
355
356 (void)paint.textToGlyphs(text, strlen(text), glyphs);
Mike Reed97f3cc22018-12-03 09:45:17 -0500357 paint.setTextEncoding(kGlyphID_SkTextEncoding);
Mike Reed477fb912018-11-11 20:37:45 -0500358
359 SkAutoTArray<SkScalar> widthStorage(count * 2);
360 SkScalar* widths = widthStorage.get();
361 SkAutoTArray<SkRect> rectStorage(count * 2);
362 SkRect* bounds = rectStorage.get();
363
364 for (bool subpix : { false, true }) {
365 paint.setSubpixelText(subpix);
366 for (auto hint : { kNo_SkFontHinting, kSlight_SkFontHinting, kNormal_SkFontHinting, kFull_SkFontHinting}) {
367 paint.setHinting(hint);
368 for (auto size : { 1.0f, 12.0f, 100.0f }) {
369 paint.setTextSize(size);
370 paint.getTextWidths(glyphs, count * 2, widths, bounds);
371
372 SkFont font = SkFont::LEGACY_ExtractFromPaint(paint);
373 font.getWidths(glyphs, count, widths + count, bounds + count);
374
375 for (int i = 0; i < count; ++i) {
376 REPORTER_ASSERT(r, widths[i] == widths[i + count]);
377 REPORTER_ASSERT(r, bounds[i] == bounds[i + count]);
378 }
379 }
380 }
381 }
382}
Mike Reed560d5b32018-12-16 16:36:48 -0500383#endif
Mike Reedc16abee2018-11-24 13:27:27 -0500384
385DEF_TEST(Font_getpos, r) {
386 SkFont font;
387 const char text[] = "Hamburgefons!@#!#23425,./;'[]";
388 int count = font.countText(text, strlen(text), kUTF8_SkTextEncoding);
389 SkAutoTArray<uint16_t> glyphStorage(count);
390 uint16_t* glyphs = glyphStorage.get();
391 (void)font.textToGlyphs(text, strlen(text), kUTF8_SkTextEncoding, glyphs, count);
392
393 SkAutoTArray<SkScalar> widthStorage(count);
394 SkAutoTArray<SkScalar> xposStorage(count);
395 SkAutoTArray<SkPoint> posStorage(count);
396
397 SkScalar* widths = widthStorage.get();
398 SkScalar* xpos = xposStorage.get();
399 SkPoint* pos = posStorage.get();
400
401 for (bool subpix : { false, true }) {
402 font.setSubpixel(subpix);
403 for (auto hint : { kNo_SkFontHinting, kSlight_SkFontHinting, kNormal_SkFontHinting, kFull_SkFontHinting}) {
404 font.setHinting(hint);
405 for (auto size : { 1.0f, 12.0f, 100.0f }) {
406 font.setSize(size);
407
408 font.getWidths(glyphs, count, widths);
409 font.getXPos(glyphs, count, xpos, 10);
410 font.getPos(glyphs, count, pos, {10, 20});
411
412 auto nearly_eq = [](SkScalar a, SkScalar b) {
413 return SkScalarAbs(a - b) < 0.000001f;
414 };
415
416 SkScalar x = 10;
417 for (int i = 0; i < count; ++i) {
418 REPORTER_ASSERT(r, nearly_eq(x, xpos[i]));
419 REPORTER_ASSERT(r, nearly_eq(x, pos[i].fX));
420 REPORTER_ASSERT(r, nearly_eq(20, pos[i].fY));
421 x += widths[i];
422 }
423 }
424 }
425 }
426}