epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | /* |
| 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.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 7 | |
Hal Canary | 95e3c05 | 2017-01-11 12:44:43 -0500 | [diff] [blame] | 8 | #include "SkAutoMalloc.h" |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 9 | #include "SkBlurMask.h" |
Mike Reed | 477fb91 | 2018-11-11 20:37:45 -0500 | [diff] [blame] | 10 | #include "SkFont.h" |
robertphillips@google.com | b706117 | 2013-09-06 14:16:12 +0000 | [diff] [blame] | 11 | #include "SkLayerDrawLooper.h" |
Mike Reed | 1be1f8d | 2018-03-14 13:01:17 -0400 | [diff] [blame] | 12 | #include "SkMaskFilter.h" |
Cary Clark | 60ca867 | 2018-03-06 15:09:27 -0500 | [diff] [blame] | 13 | #include "SkPaintPriv.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 14 | #include "SkPath.h" |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 15 | #include "SkRandom.h" |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 16 | #include "SkReadBuffer.h" |
Hal Canary | c640d0d | 2018-06-13 09:59:02 -0400 | [diff] [blame] | 17 | #include "SkTo.h" |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 18 | #include "SkTypeface.h" |
Hal Canary | ea60b95 | 2018-08-21 11:45:46 -0400 | [diff] [blame] | 19 | #include "SkUTF.h" |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 20 | #include "SkWriteBuffer.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 21 | #include "Test.h" |
Ethan Nicholas | 0054311 | 2018-07-31 09:44:36 -0400 | [diff] [blame] | 22 | #undef ASSERT |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 23 | |
| 24 | static 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 Canary | f107a2f | 2018-07-25 16:52:48 -0400 | [diff] [blame] | 27 | int n = SkToInt(SkUTF::ToUTF8(src[i], u8)); |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 28 | u8 += n; |
| 29 | } |
| 30 | return u8 - (char*)dst; |
| 31 | } |
| 32 | |
| 33 | static 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 Canary | f107a2f | 2018-07-25 16:52:48 -0400 | [diff] [blame] | 36 | int n = SkToInt(SkUTF::ToUTF16(src[i], u16)); |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 37 | u16 += n; |
| 38 | } |
| 39 | return (char*)u16 - (char*)dst; |
| 40 | } |
| 41 | |
| 42 | static 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.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 50 | static 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.org | e8807f4 | 2014-03-24 23:03:11 +0000 | [diff] [blame] | 59 | DEF_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.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 64 | 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 Reed | 97f3cc2 | 2018-12-03 09:45:17 -0500 | [diff] [blame] | 71 | SkTextEncoding fEncoding; |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 72 | } gRec[] = { |
Mike Reed | 97f3cc2 | 2018-12-03 09:45:17 -0500 | [diff] [blame] | 73 | { uni_to_utf8, kUTF8_SkTextEncoding }, |
| 74 | { uni_to_utf16, kUTF16_SkTextEncoding }, |
| 75 | { uni_to_utf32, kUTF32_SkTextEncoding }, |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
commit-bot@chromium.org | e0e7cfe | 2013-09-09 20:09:12 +0000 | [diff] [blame] | 78 | SkRandom rand; |
Mike Reed | ab8f297 | 2018-12-05 13:20:29 -0500 | [diff] [blame] | 79 | SkFont font; |
| 80 | font.setTypeface(SkTypeface::MakeDefault()); |
Herb Derby | 087fad7 | 2019-01-22 14:45:16 -0500 | [diff] [blame] | 81 | SkTypeface* face = font.getTypefaceOrDefault(); |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 82 | |
| 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.com | 98a1967 | 2013-07-03 07:00:57 +0000 | [diff] [blame] | 90 | |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 91 | for (size_t k = 0; k < SK_ARRAY_COUNT(gRec); ++k) { |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 92 | size_t len = gRec[k].fSeedTextProc(src, dst, NGLYPHS); |
skia.committer@gmail.com | 98a1967 | 2013-07-03 07:00:57 +0000 | [diff] [blame] | 93 | |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 94 | uint16_t glyphs0[NGLYPHS], glyphs1[NGLYPHS]; |
skia.committer@gmail.com | 98a1967 | 2013-07-03 07:00:57 +0000 | [diff] [blame] | 95 | |
Mike Reed | ab8f297 | 2018-12-05 13:20:29 -0500 | [diff] [blame] | 96 | int nglyphs = font.textToGlyphs(dst, len, gRec[k].fEncoding, glyphs0, NGLYPHS); |
| 97 | int first = face->charsToGlyphs(dst, (SkTypeface::Encoding)gRec[k].fEncoding, |
| 98 | glyphs1, NGLYPHS); |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 99 | int index = find_first_zero(glyphs1, NGLYPHS); |
| 100 | |
| 101 | REPORTER_ASSERT(reporter, NGLYPHS == nglyphs); |
| 102 | REPORTER_ASSERT(reporter, index == first); |
commit-bot@chromium.org | e8807f4 | 2014-03-24 23:03:11 +0000 | [diff] [blame] | 103 | REPORTER_ASSERT(reporter, 0 == memcmp(glyphs0, glyphs1, NGLYPHS * sizeof(uint16_t))); |
reed@google.com | bcb42ae | 2013-07-02 13:56:39 +0000 | [diff] [blame] | 104 | } |
| 105 | } |
| 106 | } |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 107 | |
reed@google.com | 25b3bd5 | 2013-05-22 13:55:54 +0000 | [diff] [blame] | 108 | // temparary api for bicubic, just be sure we can set/clear it |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 109 | DEF_TEST(Paint_filterQuality, reporter) { |
reed@google.com | 9cfc83c | 2013-07-22 17:18:18 +0000 | [diff] [blame] | 110 | SkPaint p0, p1; |
skia.committer@gmail.com | 5c561cb | 2013-07-25 07:01:00 +0000 | [diff] [blame] | 111 | |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 112 | REPORTER_ASSERT(reporter, kNone_SkFilterQuality == p0.getFilterQuality()); |
skia.committer@gmail.com | 5c561cb | 2013-07-25 07:01:00 +0000 | [diff] [blame] | 113 | |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 114 | static const SkFilterQuality gQualitys[] = { |
| 115 | kNone_SkFilterQuality, |
| 116 | kLow_SkFilterQuality, |
| 117 | kMedium_SkFilterQuality, |
| 118 | kHigh_SkFilterQuality |
reed@google.com | 9cfc83c | 2013-07-22 17:18:18 +0000 | [diff] [blame] | 119 | }; |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 120 | for (size_t i = 0; i < SK_ARRAY_COUNT(gQualitys); ++i) { |
| 121 | p0.setFilterQuality(gQualitys[i]); |
| 122 | REPORTER_ASSERT(reporter, gQualitys[i] == p0.getFilterQuality()); |
reed@google.com | 9cfc83c | 2013-07-22 17:18:18 +0000 | [diff] [blame] | 123 | p1 = p0; |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 124 | REPORTER_ASSERT(reporter, gQualitys[i] == p1.getFilterQuality()); |
reed@google.com | 9cfc83c | 2013-07-22 17:18:18 +0000 | [diff] [blame] | 125 | |
| 126 | p0.reset(); |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 127 | REPORTER_ASSERT(reporter, kNone_SkFilterQuality == p0.getFilterQuality()); |
reed@google.com | 9cfc83c | 2013-07-22 17:18:18 +0000 | [diff] [blame] | 128 | } |
reed@google.com | 25b3bd5 | 2013-05-22 13:55:54 +0000 | [diff] [blame] | 129 | } |
| 130 | |
commit-bot@chromium.org | e8807f4 | 2014-03-24 23:03:11 +0000 | [diff] [blame] | 131 | DEF_TEST(Paint_copy, reporter) { |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 132 | SkPaint paint; |
| 133 | // set a few member variables |
| 134 | paint.setStyle(SkPaint::kStrokeAndFill_Style); |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 135 | paint.setStrokeWidth(SkIntToScalar(2)); |
| 136 | // set a few pointers |
commit-bot@chromium.org | 73cb153 | 2014-04-15 15:48:36 +0000 | [diff] [blame] | 137 | SkLayerDrawLooper::Builder looperBuilder; |
reed | 7b380d0 | 2016-03-21 13:25:16 -0700 | [diff] [blame] | 138 | paint.setLooper(looperBuilder.detach()); |
Mike Reed | 1be1f8d | 2018-03-14 13:01:17 -0400 | [diff] [blame] | 139 | paint.setMaskFilter(SkMaskFilter::MakeBlur(kNormal_SkBlurStyle, |
reed | efdfd51 | 2016-04-04 10:02:58 -0700 | [diff] [blame] | 140 | SkBlurMask::ConvertRadiusToSigma(1))); |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 141 | |
| 142 | // copy the paint using the copy constructor and check they are the same |
| 143 | SkPaint copiedPaint = paint; |
Mike Reed | 5f528e5 | 2019-01-28 10:57:28 -0500 | [diff] [blame] | 144 | REPORTER_ASSERT(reporter, paint.getHash() == copiedPaint.getHash()); |
robertphillips@google.com | b265741 | 2013-08-07 22:36:29 +0000 | [diff] [blame] | 145 | REPORTER_ASSERT(reporter, paint == copiedPaint); |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 146 | |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 147 | // copy the paint using the equal operator and check they are the same |
| 148 | copiedPaint = paint; |
robertphillips@google.com | b265741 | 2013-08-07 22:36:29 +0000 | [diff] [blame] | 149 | REPORTER_ASSERT(reporter, paint == copiedPaint); |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 150 | |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 151 | // clean the paint and check they are back to their initial states |
| 152 | SkPaint cleanPaint; |
| 153 | paint.reset(); |
| 154 | copiedPaint.reset(); |
robertphillips@google.com | b265741 | 2013-08-07 22:36:29 +0000 | [diff] [blame] | 155 | REPORTER_ASSERT(reporter, cleanPaint == paint); |
| 156 | REPORTER_ASSERT(reporter, cleanPaint == copiedPaint); |
djsollen@google.com | b44cd65 | 2011-12-01 17:09:21 +0000 | [diff] [blame] | 157 | } |
reed@android.com | a0f5d15 | 2009-06-22 17:38:10 +0000 | [diff] [blame] | 158 | |
| 159 | // found and fixed for webkit: mishandling when we hit recursion limit on |
| 160 | // mostly degenerate cubic flatness test |
commit-bot@chromium.org | e8807f4 | 2014-03-24 23:03:11 +0000 | [diff] [blame] | 161 | DEF_TEST(Paint_regression_cubic, reporter) { |
reed@android.com | a0f5d15 | 2009-06-22 17:38:10 +0000 | [diff] [blame] | 162 | SkPath path, stroke; |
| 163 | SkPaint paint; |
| 164 | |
commit-bot@chromium.org | 4b413c8 | 2013-11-25 19:44:07 +0000 | [diff] [blame] | 165 | path.moveTo(460.2881309415525f, |
| 166 | 303.250847066498f); |
| 167 | path.cubicTo(463.36378422175284f, |
| 168 | 302.1169735073363f, |
| 169 | 456.32239330810046f, |
| 170 | 304.720354932878f, |
| 171 | 453.15255460013304f, |
| 172 | 305.788586869862f); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 173 | |
reed@android.com | a0f5d15 | 2009-06-22 17:38:10 +0000 | [diff] [blame] | 174 | SkRect fillR, strokeR; |
| 175 | fillR = path.getBounds(); |
| 176 | |
| 177 | paint.setStyle(SkPaint::kStroke_Style); |
| 178 | paint.setStrokeWidth(SkIntToScalar(2)); |
| 179 | paint.getFillPath(path, &stroke); |
| 180 | strokeR = stroke.getBounds(); |
| 181 | |
| 182 | SkRect maxR = fillR; |
| 183 | SkScalar miter = SkMaxScalar(SK_Scalar1, paint.getStrokeMiter()); |
| 184 | SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ? |
Mike Reed | df85c38 | 2017-02-14 10:59:19 -0500 | [diff] [blame] | 185 | paint.getStrokeWidth() * miter : |
reed@android.com | a0f5d15 | 2009-06-22 17:38:10 +0000 | [diff] [blame] | 186 | paint.getStrokeWidth(); |
| 187 | maxR.inset(-inset, -inset); |
| 188 | |
| 189 | // test that our stroke didn't explode |
| 190 | REPORTER_ASSERT(reporter, maxR.contains(strokeR)); |
| 191 | } |
| 192 | |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 193 | DEF_TEST(Paint_flattening, reporter) { |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 194 | const SkFilterQuality levels[] = { |
| 195 | kNone_SkFilterQuality, |
| 196 | kLow_SkFilterQuality, |
| 197 | kMedium_SkFilterQuality, |
| 198 | kHigh_SkFilterQuality, |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 199 | }; |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 200 | const SkPaint::Cap caps[] = { |
| 201 | SkPaint::kButt_Cap, |
| 202 | SkPaint::kRound_Cap, |
| 203 | SkPaint::kSquare_Cap, |
| 204 | }; |
| 205 | const SkPaint::Join joins[] = { |
| 206 | SkPaint::kMiter_Join, |
| 207 | SkPaint::kRound_Join, |
| 208 | SkPaint::kBevel_Join, |
| 209 | }; |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 210 | const SkPaint::Style styles[] = { |
| 211 | SkPaint::kFill_Style, |
| 212 | SkPaint::kStroke_Style, |
| 213 | SkPaint::kStrokeAndFill_Style, |
| 214 | }; |
| 215 | |
| 216 | #define FOR_SETUP(index, array, setter) \ |
| 217 | for (size_t index = 0; index < SK_ARRAY_COUNT(array); ++index) { \ |
Mike Reed | 74b7677 | 2019-01-04 14:01:06 -0500 | [diff] [blame] | 218 | paint.setter(array[index]); |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 219 | |
| 220 | SkPaint paint; |
Mike Reed | 74b7677 | 2019-01-04 14:01:06 -0500 | [diff] [blame] | 221 | paint.setAntiAlias(true); |
| 222 | |
| 223 | // we don't serialize hinting or encoding -- soon to be removed from paint |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 224 | |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 225 | FOR_SETUP(i, levels, setFilterQuality) |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 226 | FOR_SETUP(l, caps, setStrokeCap) |
| 227 | FOR_SETUP(m, joins, setStrokeJoin) |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 228 | FOR_SETUP(p, styles, setStyle) |
| 229 | |
brianosman | fad9856 | 2016-05-04 11:06:28 -0700 | [diff] [blame] | 230 | SkBinaryWriteBuffer writer; |
Cary Clark | 60ca867 | 2018-03-06 15:09:27 -0500 | [diff] [blame] | 231 | SkPaintPriv::Flatten(paint, writer); |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 232 | |
mtklein | b4c899d | 2016-04-29 13:58:09 -0700 | [diff] [blame] | 233 | SkAutoMalloc buf(writer.bytesWritten()); |
| 234 | writer.writeToMemory(buf.get()); |
| 235 | SkReadBuffer reader(buf.get(), writer.bytesWritten()); |
skia.committer@gmail.com | 667b98d | 2014-04-17 03:05:10 +0000 | [diff] [blame] | 236 | |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 237 | SkPaint paint2; |
Mike Reed | 31ba6fe | 2019-01-14 17:36:54 -0500 | [diff] [blame] | 238 | SkPaintPriv::Unflatten(&paint2, reader, nullptr); |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 239 | REPORTER_ASSERT(reporter, paint2 == paint); |
| 240 | |
Mike Reed | 74b7677 | 2019-01-04 14:01:06 -0500 | [diff] [blame] | 241 | }}}} |
commit-bot@chromium.org | 85faf50 | 2014-04-16 12:58:02 +0000 | [diff] [blame] | 242 | #undef FOR_SETUP |
| 243 | |
| 244 | } |
| 245 | |
djsollen@google.com | 46348e2 | 2013-03-04 19:47:42 +0000 | [diff] [blame] | 246 | // found and fixed for android: not initializing rect for string's of length 0 |
commit-bot@chromium.org | e8807f4 | 2014-03-24 23:03:11 +0000 | [diff] [blame] | 247 | DEF_TEST(Paint_regression_measureText, reporter) { |
djsollen@google.com | 46348e2 | 2013-03-04 19:47:42 +0000 | [diff] [blame] | 248 | |
Mike Reed | 2e6db18 | 2018-12-15 13:45:33 -0500 | [diff] [blame] | 249 | SkFont font; |
| 250 | font.setSize(12.0f); |
djsollen@google.com | 46348e2 | 2013-03-04 19:47:42 +0000 | [diff] [blame] | 251 | |
| 252 | SkRect r; |
| 253 | r.setLTRB(SK_ScalarNaN, SK_ScalarNaN, SK_ScalarNaN, SK_ScalarNaN); |
| 254 | |
| 255 | // test that the rect was reset |
Mike Reed | 2e6db18 | 2018-12-15 13:45:33 -0500 | [diff] [blame] | 256 | font.measureText("", 0, kUTF8_SkTextEncoding, &r); |
djsollen@google.com | 46348e2 | 2013-03-04 19:47:42 +0000 | [diff] [blame] | 257 | REPORTER_ASSERT(reporter, r.isEmpty()); |
| 258 | } |
| 259 | |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 260 | #define ASSERT(expr) REPORTER_ASSERT(r, expr) |
| 261 | |
mtklein | 610a015 | 2014-09-25 11:57:53 -0700 | [diff] [blame] | 262 | DEF_TEST(Paint_MoreFlattening, r) { |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 263 | SkPaint paint; |
| 264 | paint.setColor(0x00AABBCC); |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 265 | paint.setBlendMode(SkBlendMode::kModulate); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 266 | paint.setLooper(nullptr); // Default value, ignored. |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 267 | |
brianosman | fad9856 | 2016-05-04 11:06:28 -0700 | [diff] [blame] | 268 | SkBinaryWriteBuffer writer; |
Cary Clark | 60ca867 | 2018-03-06 15:09:27 -0500 | [diff] [blame] | 269 | SkPaintPriv::Flatten(paint, writer); |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 270 | |
mtklein | b4c899d | 2016-04-29 13:58:09 -0700 | [diff] [blame] | 271 | SkAutoMalloc buf(writer.bytesWritten()); |
| 272 | writer.writeToMemory(buf.get()); |
| 273 | SkReadBuffer reader(buf.get(), writer.bytesWritten()); |
| 274 | |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 275 | SkPaint other; |
Mike Reed | 31ba6fe | 2019-01-14 17:36:54 -0500 | [diff] [blame] | 276 | SkPaintPriv::Unflatten(&other, reader, nullptr); |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 277 | ASSERT(reader.offset() == writer.bytesWritten()); |
| 278 | |
| 279 | // No matter the encoding, these must always hold. |
| 280 | ASSERT(other.getColor() == paint.getColor()); |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 281 | ASSERT(other.getLooper() == paint.getLooper()); |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 282 | ASSERT(other.getBlendMode() == paint.getBlendMode()); |
commit-bot@chromium.org | aca1c01 | 2014-02-21 18:18:05 +0000 | [diff] [blame] | 283 | } |
mtklein | fb1fe4f | 2014-10-07 09:26:10 -0700 | [diff] [blame] | 284 | |
| 285 | DEF_TEST(Paint_getHash, r) { |
| 286 | // Try not to inspect the actual hash values in here. |
| 287 | // We might want to change the hash function. |
| 288 | |
| 289 | SkPaint paint; |
| 290 | const uint32_t defaultHash = paint.getHash(); |
| 291 | |
| 292 | // Check that some arbitrary field affects the hash. |
| 293 | paint.setColor(0xFF00FF00); |
| 294 | REPORTER_ASSERT(r, paint.getHash() != defaultHash); |
| 295 | paint.setColor(SK_ColorBLACK); // Reset to default value. |
| 296 | REPORTER_ASSERT(r, paint.getHash() == defaultHash); |
| 297 | |
Mike Reed | 3c03c85 | 2019-01-28 15:02:01 +0000 | [diff] [blame] | 298 | // This is part of fBitfields, the last field we hash. |
Mike Reed | 5f528e5 | 2019-01-28 10:57:28 -0500 | [diff] [blame] | 299 | paint.setBlendMode(SkBlendMode::kSrc); |
Mike Reed | 3c03c85 | 2019-01-28 15:02:01 +0000 | [diff] [blame] | 300 | REPORTER_ASSERT(r, paint.getHash() != defaultHash); |
Mike Reed | 5f528e5 | 2019-01-28 10:57:28 -0500 | [diff] [blame] | 301 | paint.setBlendMode(SkBlendMode::kSrcOver); |
mtklein | fb1fe4f | 2014-10-07 09:26:10 -0700 | [diff] [blame] | 302 | REPORTER_ASSERT(r, paint.getHash() == defaultHash); |
| 303 | } |
reed | f539b8c | 2014-11-11 12:51:33 -0800 | [diff] [blame] | 304 | |
| 305 | #include "SkColorMatrixFilter.h" |
| 306 | |
| 307 | DEF_TEST(Paint_nothingToDraw, r) { |
| 308 | SkPaint paint; |
| 309 | |
| 310 | REPORTER_ASSERT(r, !paint.nothingToDraw()); |
| 311 | paint.setAlpha(0); |
| 312 | REPORTER_ASSERT(r, paint.nothingToDraw()); |
| 313 | |
| 314 | paint.setAlpha(0xFF); |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 315 | paint.setBlendMode(SkBlendMode::kDst); |
reed | f539b8c | 2014-11-11 12:51:33 -0800 | [diff] [blame] | 316 | REPORTER_ASSERT(r, paint.nothingToDraw()); |
| 317 | |
| 318 | paint.setAlpha(0); |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 319 | paint.setBlendMode(SkBlendMode::kSrcOver); |
reed | f539b8c | 2014-11-11 12:51:33 -0800 | [diff] [blame] | 320 | |
| 321 | SkColorMatrix cm; |
| 322 | cm.setIdentity(); // does not change alpha |
reed | d053ce9 | 2016-03-22 10:17:23 -0700 | [diff] [blame] | 323 | paint.setColorFilter(SkColorFilter::MakeMatrixFilterRowMajor255(cm.fMat)); |
reed | f539b8c | 2014-11-11 12:51:33 -0800 | [diff] [blame] | 324 | REPORTER_ASSERT(r, paint.nothingToDraw()); |
| 325 | |
| 326 | cm.postTranslate(0, 0, 0, 1); // wacks alpha |
reed | d053ce9 | 2016-03-22 10:17:23 -0700 | [diff] [blame] | 327 | paint.setColorFilter(SkColorFilter::MakeMatrixFilterRowMajor255(cm.fMat)); |
reed | f539b8c | 2014-11-11 12:51:33 -0800 | [diff] [blame] | 328 | REPORTER_ASSERT(r, !paint.nothingToDraw()); |
| 329 | } |
Mike Reed | 477fb91 | 2018-11-11 20:37:45 -0500 | [diff] [blame] | 330 | |
Mike Reed | c16abee | 2018-11-24 13:27:27 -0500 | [diff] [blame] | 331 | DEF_TEST(Font_getpos, r) { |
| 332 | SkFont font; |
| 333 | const char text[] = "Hamburgefons!@#!#23425,./;'[]"; |
| 334 | int count = font.countText(text, strlen(text), kUTF8_SkTextEncoding); |
| 335 | SkAutoTArray<uint16_t> glyphStorage(count); |
| 336 | uint16_t* glyphs = glyphStorage.get(); |
| 337 | (void)font.textToGlyphs(text, strlen(text), kUTF8_SkTextEncoding, glyphs, count); |
| 338 | |
| 339 | SkAutoTArray<SkScalar> widthStorage(count); |
| 340 | SkAutoTArray<SkScalar> xposStorage(count); |
| 341 | SkAutoTArray<SkPoint> posStorage(count); |
| 342 | |
| 343 | SkScalar* widths = widthStorage.get(); |
| 344 | SkScalar* xpos = xposStorage.get(); |
| 345 | SkPoint* pos = posStorage.get(); |
| 346 | |
| 347 | for (bool subpix : { false, true }) { |
| 348 | font.setSubpixel(subpix); |
| 349 | for (auto hint : { kNo_SkFontHinting, kSlight_SkFontHinting, kNormal_SkFontHinting, kFull_SkFontHinting}) { |
| 350 | font.setHinting(hint); |
| 351 | for (auto size : { 1.0f, 12.0f, 100.0f }) { |
| 352 | font.setSize(size); |
| 353 | |
| 354 | font.getWidths(glyphs, count, widths); |
| 355 | font.getXPos(glyphs, count, xpos, 10); |
| 356 | font.getPos(glyphs, count, pos, {10, 20}); |
| 357 | |
| 358 | auto nearly_eq = [](SkScalar a, SkScalar b) { |
| 359 | return SkScalarAbs(a - b) < 0.000001f; |
| 360 | }; |
| 361 | |
| 362 | SkScalar x = 10; |
| 363 | for (int i = 0; i < count; ++i) { |
| 364 | REPORTER_ASSERT(r, nearly_eq(x, xpos[i])); |
| 365 | REPORTER_ASSERT(r, nearly_eq(x, pos[i].fX)); |
| 366 | REPORTER_ASSERT(r, nearly_eq(20, pos[i].fY)); |
| 367 | x += widths[i]; |
| 368 | } |
| 369 | } |
| 370 | } |
| 371 | } |
| 372 | } |