blob: 75e86e3f9283e69c9536fb637bfd3655d87cb4e0 [file] [log] [blame]
Yuqian Li3154a532017-09-06 13:33:30 -04001/*
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 */
7
8#include "SkAutoMalloc.h"
9#include "SkCanvas.h"
10#include "SkGeometry.h"
11#include "SkNullCanvas.h"
12#include "SkPaint.h"
13#include "SkParse.h"
14#include "SkParsePath.h"
15#include "SkPathEffect.h"
16#include "SkPathPriv.h"
17#include "SkRRect.h"
18#include "SkRandom.h"
19#include "SkReader32.h"
20#include "SkSize.h"
21#include "SkStream.h"
22#include "SkStrokeRec.h"
23#include "SkSurface.h"
24#include "SkWriter32.h"
25#include "Test.h"
26#include <cmath>
27
28
29static void set_radii(SkVector radii[4], int index, float rad) {
30 sk_bzero(radii, sizeof(SkVector) * 4);
31 radii[index].set(rad, rad);
32}
33
34static void test_add_rrect(skiatest::Reporter* reporter, const SkRect& bounds,
35 const SkVector radii[4]) {
36 SkRRect rrect;
37 rrect.setRectRadii(bounds, radii);
38 REPORTER_ASSERT(reporter, bounds == rrect.rect());
39
40 SkPath path;
41 // this line should not assert in the debug build (from validate)
42 path.addRRect(rrect);
43 REPORTER_ASSERT(reporter, bounds == path.getBounds());
44}
45
46static void test_skbug_3469(skiatest::Reporter* reporter) {
47 SkPath path;
48 path.moveTo(20, 20);
49 path.quadTo(20, 50, 80, 50);
50 path.quadTo(20, 50, 20, 80);
51 REPORTER_ASSERT(reporter, !path.isConvex());
52}
53
54static void test_skbug_3239(skiatest::Reporter* reporter) {
55 const float min = SkBits2Float(0xcb7f16c8); /* -16717512.000000 */
56 const float max = SkBits2Float(0x4b7f1c1d); /* 16718877.000000 */
57 const float big = SkBits2Float(0x4b7f1bd7); /* 16718807.000000 */
58
59 const float rad = 33436320;
60
61 const SkRect rectx = SkRect::MakeLTRB(min, min, max, big);
62 const SkRect recty = SkRect::MakeLTRB(min, min, big, max);
63
64 SkVector radii[4];
65 for (int i = 0; i < 4; ++i) {
66 set_radii(radii, i, rad);
67 test_add_rrect(reporter, rectx, radii);
68 test_add_rrect(reporter, recty, radii);
69 }
70}
71
72static void make_path_crbug364224(SkPath* path) {
73 path->reset();
74 path->moveTo(3.747501373f, 2.724499941f);
75 path->lineTo(3.747501373f, 3.75f);
76 path->cubicTo(3.747501373f, 3.88774991f, 3.635501385f, 4.0f, 3.497501373f, 4.0f);
77 path->lineTo(0.7475013733f, 4.0f);
78 path->cubicTo(0.6095013618f, 4.0f, 0.4975013733f, 3.88774991f, 0.4975013733f, 3.75f);
79 path->lineTo(0.4975013733f, 1.0f);
80 path->cubicTo(0.4975013733f, 0.8622499704f, 0.6095013618f, 0.75f, 0.7475013733f,0.75f);
81 path->lineTo(3.497501373f, 0.75f);
82 path->cubicTo(3.50275135f, 0.75f, 3.5070014f, 0.7527500391f, 3.513001442f, 0.753000021f);
83 path->lineTo(3.715001345f, 0.5512499809f);
84 path->cubicTo(3.648251295f, 0.5194999576f, 3.575501442f, 0.4999999702f, 3.497501373f, 0.4999999702f);
85 path->lineTo(0.7475013733f, 0.4999999702f);
86 path->cubicTo(0.4715013802f, 0.4999999702f, 0.2475013733f, 0.7239999771f, 0.2475013733f, 1.0f);
87 path->lineTo(0.2475013733f, 3.75f);
88 path->cubicTo(0.2475013733f, 4.026000023f, 0.4715013504f, 4.25f, 0.7475013733f, 4.25f);
89 path->lineTo(3.497501373f, 4.25f);
90 path->cubicTo(3.773501396f, 4.25f, 3.997501373f, 4.026000023f, 3.997501373f, 3.75f);
91 path->lineTo(3.997501373f, 2.474750042f);
92 path->lineTo(3.747501373f, 2.724499941f);
93 path->close();
94}
95
96static void make_path_crbug364224_simplified(SkPath* path) {
97 path->moveTo(3.747501373f, 2.724499941f);
98 path->cubicTo(3.648251295f, 0.5194999576f, 3.575501442f, 0.4999999702f, 3.497501373f, 0.4999999702f);
99 path->close();
100}
101
102static void test_sect_with_horizontal_needs_pinning() {
103 // Test that sect_with_horizontal in SkLineClipper.cpp needs to pin after computing the
104 // intersection.
105 SkPath path;
106 path.reset();
107 path.moveTo(-540000, -720000);
108 path.lineTo(-9.10000017e-05f, 9.99999996e-13f);
109 path.lineTo(1, 1);
110
111 // Without the pinning code in sect_with_horizontal(), this would assert in the lineclipper
112 SkPaint paint;
113 SkSurface::MakeRasterN32Premul(10, 10)->getCanvas()->drawPath(path, paint);
114}
115
116static void test_path_crbug364224() {
117 SkPath path;
118 SkPaint paint;
119 auto surface(SkSurface::MakeRasterN32Premul(84, 88));
120 SkCanvas* canvas = surface->getCanvas();
121
122 make_path_crbug364224_simplified(&path);
123 canvas->drawPath(path, paint);
124
125 make_path_crbug364224(&path);
126 canvas->drawPath(path, paint);
127}
128
Yuqian Lif13beef2017-09-14 17:15:04 -0400129static void test_draw_AA_path(int width, int height, const SkPath& path) {
130 auto surface(SkSurface::MakeRasterN32Premul(width, height));
131 SkCanvas* canvas = surface->getCanvas();
132 SkPaint paint;
133 paint.setAntiAlias(true);
134 canvas->drawPath(path, paint);
135}
136
Yuqian Li3154a532017-09-06 13:33:30 -0400137// this is a unit test instead of a GM because it doesn't draw anything
138static void test_fuzz_crbug_638223() {
Yuqian Li3154a532017-09-06 13:33:30 -0400139 SkPath path;
140 path.moveTo(SkBits2Float(0x47452a00), SkBits2Float(0x43211d01)); // 50474, 161.113f
141 path.conicTo(SkBits2Float(0x401c0000), SkBits2Float(0x40680000),
142 SkBits2Float(0x02c25a81), SkBits2Float(0x981a1fa0),
143 SkBits2Float(0x6bf9abea)); // 2.4375f, 3.625f, 2.85577e-37f, -1.992e-24f, 6.03669e+26f
Yuqian Lif13beef2017-09-14 17:15:04 -0400144 test_draw_AA_path(250, 250, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400145}
146
147static void test_fuzz_crbug_643933() {
Yuqian Li3154a532017-09-06 13:33:30 -0400148 SkPath path;
149 path.moveTo(0, 0);
150 path.conicTo(SkBits2Float(0x002001f2), SkBits2Float(0x4161ffff), // 2.93943e-39f, 14.125f
151 SkBits2Float(0x49f7224d), SkBits2Float(0x45eec8df), // 2.02452e+06f, 7641.11f
152 SkBits2Float(0x721aee0c)); // 3.0687e+30f
Yuqian Lif13beef2017-09-14 17:15:04 -0400153 test_draw_AA_path(250, 250, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400154 path.reset();
155 path.moveTo(0, 0);
156 path.conicTo(SkBits2Float(0x00007ff2), SkBits2Float(0x4169ffff), // 4.58981e-41f, 14.625f
157 SkBits2Float(0x43ff2261), SkBits2Float(0x41eeea04), // 510.269f, 29.8643f
158 SkBits2Float(0x5d06eff8)); // 6.07704e+17f
Yuqian Lif13beef2017-09-14 17:15:04 -0400159 test_draw_AA_path(250, 250, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400160}
161
162static void test_fuzz_crbug_647922() {
Yuqian Li3154a532017-09-06 13:33:30 -0400163 SkPath path;
164 path.moveTo(0, 0);
165 path.conicTo(SkBits2Float(0x00003939), SkBits2Float(0x42487fff), // 2.05276e-41f, 50.125f
166 SkBits2Float(0x48082361), SkBits2Float(0x4408e8e9), // 139406, 547.639f
167 SkBits2Float(0x4d1ade0f)); // 1.6239e+08f
Yuqian Lif13beef2017-09-14 17:15:04 -0400168 test_draw_AA_path(250, 250, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400169}
170
171static void test_fuzz_crbug_662780() {
172 auto surface(SkSurface::MakeRasterN32Premul(250, 250));
173 SkCanvas* canvas = surface->getCanvas();
174 SkPaint paint;
175 paint.setAntiAlias(true);
176 SkPath path;
177 path.moveTo(SkBits2Float(0x41000000), SkBits2Float(0x431e0000)); // 8, 158
178 path.lineTo(SkBits2Float(0x41000000), SkBits2Float(0x42f00000)); // 8, 120
179 // 8, 8, 8.00002f, 8, 0.707107f
180 path.conicTo(SkBits2Float(0x41000000), SkBits2Float(0x41000000),
181 SkBits2Float(0x41000010), SkBits2Float(0x41000000), SkBits2Float(0x3f3504f3));
182 path.lineTo(SkBits2Float(0x439a0000), SkBits2Float(0x41000000)); // 308, 8
183 // 308, 8, 308, 8, 0.707107f
184 path.conicTo(SkBits2Float(0x439a0000), SkBits2Float(0x41000000),
185 SkBits2Float(0x439a0000), SkBits2Float(0x41000000), SkBits2Float(0x3f3504f3));
186 path.lineTo(SkBits2Float(0x439a0000), SkBits2Float(0x431e0000)); // 308, 158
187 // 308, 158, 308, 158, 0.707107f
188 path.conicTo(SkBits2Float(0x439a0000), SkBits2Float(0x431e0000),
189 SkBits2Float(0x439a0000), SkBits2Float(0x431e0000), SkBits2Float(0x3f3504f3));
190 path.lineTo(SkBits2Float(0x41000000), SkBits2Float(0x431e0000)); // 8, 158
191 // 8, 158, 8, 158, 0.707107f
192 path.conicTo(SkBits2Float(0x41000000), SkBits2Float(0x431e0000),
193 SkBits2Float(0x41000000), SkBits2Float(0x431e0000), SkBits2Float(0x3f3504f3));
194 path.close();
195 canvas->clipPath(path, true);
196 canvas->drawRect(SkRect::MakeWH(250, 250), paint);
197}
198
199static void test_mask_overflow() {
Yuqian Li3154a532017-09-06 13:33:30 -0400200 SkPath path;
201 path.moveTo(SkBits2Float(0x43e28000), SkBits2Float(0x43aa8000)); // 453, 341
202 path.lineTo(SkBits2Float(0x43de6000), SkBits2Float(0x43aa8000)); // 444.75f, 341
203 // 440.47f, 341, 437, 344.47f, 437, 348.75f
204 path.cubicTo(SkBits2Float(0x43dc3c29), SkBits2Float(0x43aa8000),
205 SkBits2Float(0x43da8000), SkBits2Float(0x43ac3c29),
206 SkBits2Float(0x43da8000), SkBits2Float(0x43ae6000));
207 path.lineTo(SkBits2Float(0x43da8000), SkBits2Float(0x43b18000)); // 437, 355
208 path.lineTo(SkBits2Float(0x43e28000), SkBits2Float(0x43b18000)); // 453, 355
209 path.lineTo(SkBits2Float(0x43e28000), SkBits2Float(0x43aa8000)); // 453, 341
Yuqian Lif13beef2017-09-14 17:15:04 -0400210 test_draw_AA_path(500, 500, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400211}
212
213static void test_fuzz_crbug_668907() {
Yuqian Li3154a532017-09-06 13:33:30 -0400214 SkPath path;
215 path.moveTo(SkBits2Float(0x46313741), SkBits2Float(0x3b00e540)); // 11341.8f, 0.00196679f
216 path.quadTo(SkBits2Float(0x41410041), SkBits2Float(0xc1414141), SkBits2Float(0x41414141),
217 SkBits2Float(0x414100ff)); // 12.0626f, -12.0784f, 12.0784f, 12.0627f
218 path.lineTo(SkBits2Float(0x46313741), SkBits2Float(0x3b00e540)); // 11341.8f, 0.00196679f
219 path.close();
Yuqian Lif13beef2017-09-14 17:15:04 -0400220 test_draw_AA_path(400, 500, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400221}
222
223/**
224 * In debug mode, this path was causing an assertion to fail in
225 * SkPathStroker::preJoinTo() and, in Release, the use of an unitialized value.
226 */
227static void make_path_crbugskia2820(SkPath* path, skiatest::Reporter* reporter) {
228 SkPoint orig, p1, p2, p3;
229 orig = SkPoint::Make(1.f, 1.f);
230 p1 = SkPoint::Make(1.f - SK_ScalarNearlyZero, 1.f);
231 p2 = SkPoint::Make(1.f, 1.f + SK_ScalarNearlyZero);
232 p3 = SkPoint::Make(2.f, 2.f);
233
234 path->reset();
235 path->moveTo(orig);
236 path->cubicTo(p1, p2, p3);
237 path->close();
238}
239
240static void test_path_crbugskia2820(skiatest::Reporter* reporter) {//GrContext* context) {
241 SkPath path;
242 make_path_crbugskia2820(&path, reporter);
243
244 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
245 stroke.setStrokeStyle(2 * SK_Scalar1);
246 stroke.applyToPath(&path, path);
247}
248
249static void test_path_crbugskia5995() {
Yuqian Li3154a532017-09-06 13:33:30 -0400250 SkPath path;
251 path.moveTo(SkBits2Float(0x40303030), SkBits2Float(0x3e303030)); // 2.75294f, 0.172059f
252 path.quadTo(SkBits2Float(0x41d63030), SkBits2Float(0x30303030), SkBits2Float(0x41013030),
253 SkBits2Float(0x00000000)); // 26.7735f, 6.40969e-10f, 8.07426f, 0
254 path.moveTo(SkBits2Float(0x00000000), SkBits2Float(0x00000000)); // 0, 0
Yuqian Lif13beef2017-09-14 17:15:04 -0400255 test_draw_AA_path(500, 500, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400256}
257
258static void make_path0(SkPath* path) {
259 // from * https://code.google.com/p/skia/issues/detail?id=1706
260
261 path->moveTo(146.939f, 1012.84f);
262 path->lineTo(181.747f, 1009.18f);
263 path->lineTo(182.165f, 1013.16f);
264 path->lineTo(147.357f, 1016.82f);
265 path->lineTo(146.939f, 1012.84f);
266 path->close();
267}
268
269static void make_path1(SkPath* path) {
270 path->addRect(SkRect::MakeXYWH(10, 10, 10, 1));
271}
272
273typedef void (*PathProc)(SkPath*);
274
275/*
276 * Regression test: we used to crash (overwrite internal storage) during
277 * construction of the region when the path was INVERSE. That is now fixed,
278 * so test these regions (which used to assert/crash).
279 *
280 * https://code.google.com/p/skia/issues/detail?id=1706
281 */
282static void test_path_to_region(skiatest::Reporter* reporter) {
283 PathProc procs[] = {
284 make_path0,
285 make_path1,
286 };
287
288 SkRegion clip;
289 clip.setRect(0, 0, 1255, 1925);
290
291 for (size_t i = 0; i < SK_ARRAY_COUNT(procs); ++i) {
292 SkPath path;
293 procs[i](&path);
294
295 SkRegion rgn;
296 rgn.setPath(path, clip);
297 path.toggleInverseFillType();
298 rgn.setPath(path, clip);
299 }
300}
301
302#ifdef SK_BUILD_FOR_WIN
303 #define SUPPRESS_VISIBILITY_WARNING
304#else
305 #define SUPPRESS_VISIBILITY_WARNING __attribute__((visibility("hidden")))
306#endif
307
308static void test_path_close_issue1474(skiatest::Reporter* reporter) {
309 // This test checks that r{Line,Quad,Conic,Cubic}To following a close()
310 // are relative to the point we close to, not relative to the point we close from.
311 SkPath path;
312 SkPoint last;
313
314 // Test rLineTo().
315 path.rLineTo(0, 100);
316 path.rLineTo(100, 0);
317 path.close(); // Returns us back to 0,0.
318 path.rLineTo(50, 50); // This should go to 50,50.
319
320 path.getLastPt(&last);
321 REPORTER_ASSERT(reporter, 50 == last.fX);
322 REPORTER_ASSERT(reporter, 50 == last.fY);
323
324 // Test rQuadTo().
325 path.rewind();
326 path.rLineTo(0, 100);
327 path.rLineTo(100, 0);
328 path.close();
329 path.rQuadTo(50, 50, 75, 75);
330
331 path.getLastPt(&last);
332 REPORTER_ASSERT(reporter, 75 == last.fX);
333 REPORTER_ASSERT(reporter, 75 == last.fY);
334
335 // Test rConicTo().
336 path.rewind();
337 path.rLineTo(0, 100);
338 path.rLineTo(100, 0);
339 path.close();
340 path.rConicTo(50, 50, 85, 85, 2);
341
342 path.getLastPt(&last);
343 REPORTER_ASSERT(reporter, 85 == last.fX);
344 REPORTER_ASSERT(reporter, 85 == last.fY);
345
346 // Test rCubicTo().
347 path.rewind();
348 path.rLineTo(0, 100);
349 path.rLineTo(100, 0);
350 path.close();
351 path.rCubicTo(50, 50, 85, 85, 95, 95);
352
353 path.getLastPt(&last);
354 REPORTER_ASSERT(reporter, 95 == last.fX);
355 REPORTER_ASSERT(reporter, 95 == last.fY);
356}
357
358static void test_gen_id(skiatest::Reporter* reporter) {
359 SkPath a, b;
360 REPORTER_ASSERT(reporter, a.getGenerationID() == b.getGenerationID());
361
362 a.moveTo(0, 0);
363 const uint32_t z = a.getGenerationID();
364 REPORTER_ASSERT(reporter, z != b.getGenerationID());
365
366 a.reset();
367 REPORTER_ASSERT(reporter, a.getGenerationID() == b.getGenerationID());
368
369 a.moveTo(1, 1);
370 const uint32_t y = a.getGenerationID();
371 REPORTER_ASSERT(reporter, z != y);
372
373 b.moveTo(2, 2);
374 const uint32_t x = b.getGenerationID();
375 REPORTER_ASSERT(reporter, x != y && x != z);
376
377 a.swap(b);
378 REPORTER_ASSERT(reporter, b.getGenerationID() == y && a.getGenerationID() == x);
379
380 b = a;
381 REPORTER_ASSERT(reporter, b.getGenerationID() == x);
382
383 SkPath c(a);
384 REPORTER_ASSERT(reporter, c.getGenerationID() == x);
385
386 c.lineTo(3, 3);
387 const uint32_t w = c.getGenerationID();
388 REPORTER_ASSERT(reporter, b.getGenerationID() == x);
389 REPORTER_ASSERT(reporter, a.getGenerationID() == x);
390 REPORTER_ASSERT(reporter, w != x);
391
392#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
393 static bool kExpectGenIDToIgnoreFill = false;
394#else
395 static bool kExpectGenIDToIgnoreFill = true;
396#endif
397
398 c.toggleInverseFillType();
399 const uint32_t v = c.getGenerationID();
400 REPORTER_ASSERT(reporter, (v == w) == kExpectGenIDToIgnoreFill);
401
402 c.rewind();
403 REPORTER_ASSERT(reporter, v != c.getGenerationID());
404}
405
406// This used to assert in the debug build, as the edges did not all line-up.
407static void test_bad_cubic_crbug234190() {
408 SkPath path;
409 path.moveTo(13.8509f, 3.16858f);
410 path.cubicTo(-2.35893e+08f, -4.21044e+08f,
411 -2.38991e+08f, -4.26573e+08f,
412 -2.41016e+08f, -4.30188e+08f);
Yuqian Lif13beef2017-09-14 17:15:04 -0400413 test_draw_AA_path(84, 88, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400414}
415
416static void test_bad_cubic_crbug229478() {
417 const SkPoint pts[] = {
418 { 4595.91064f, -11596.9873f },
419 { 4597.2168f, -11595.9414f },
420 { 4598.52344f, -11594.8955f },
421 { 4599.83008f, -11593.8496f },
422 };
423
424 SkPath path;
425 path.moveTo(pts[0]);
426 path.cubicTo(pts[1], pts[2], pts[3]);
427
428 SkPaint paint;
429 paint.setStyle(SkPaint::kStroke_Style);
430 paint.setStrokeWidth(20);
431
432 SkPath dst;
433 // Before the fix, this would infinite-recurse, and run out of stack
434 // because we would keep trying to subdivide a degenerate cubic segment.
435 paint.getFillPath(path, &dst, nullptr);
436}
437
438static void build_path_170666(SkPath& path) {
439 path.moveTo(17.9459f, 21.6344f);
440 path.lineTo(139.545f, -47.8105f);
441 path.lineTo(139.545f, -47.8105f);
442 path.lineTo(131.07f, -47.3888f);
443 path.lineTo(131.07f, -47.3888f);
444 path.lineTo(122.586f, -46.9532f);
445 path.lineTo(122.586f, -46.9532f);
446 path.lineTo(18076.6f, 31390.9f);
447 path.lineTo(18076.6f, 31390.9f);
448 path.lineTo(18085.1f, 31390.5f);
449 path.lineTo(18085.1f, 31390.5f);
450 path.lineTo(18076.6f, 31390.9f);
451 path.lineTo(18076.6f, 31390.9f);
452 path.lineTo(17955, 31460.3f);
453 path.lineTo(17955, 31460.3f);
454 path.lineTo(17963.5f, 31459.9f);
455 path.lineTo(17963.5f, 31459.9f);
456 path.lineTo(17971.9f, 31459.5f);
457 path.lineTo(17971.9f, 31459.5f);
458 path.lineTo(17.9551f, 21.6205f);
459 path.lineTo(17.9551f, 21.6205f);
460 path.lineTo(9.47091f, 22.0561f);
461 path.lineTo(9.47091f, 22.0561f);
462 path.lineTo(17.9459f, 21.6344f);
463 path.lineTo(17.9459f, 21.6344f);
464 path.close();path.moveTo(0.995934f, 22.4779f);
465 path.lineTo(0.986725f, 22.4918f);
466 path.lineTo(0.986725f, 22.4918f);
467 path.lineTo(17955, 31460.4f);
468 path.lineTo(17955, 31460.4f);
469 path.lineTo(17971.9f, 31459.5f);
470 path.lineTo(17971.9f, 31459.5f);
471 path.lineTo(18093.6f, 31390.1f);
472 path.lineTo(18093.6f, 31390.1f);
473 path.lineTo(18093.6f, 31390);
474 path.lineTo(18093.6f, 31390);
475 path.lineTo(139.555f, -47.8244f);
476 path.lineTo(139.555f, -47.8244f);
477 path.lineTo(122.595f, -46.9671f);
478 path.lineTo(122.595f, -46.9671f);
479 path.lineTo(0.995934f, 22.4779f);
480 path.lineTo(0.995934f, 22.4779f);
481 path.close();
482 path.moveTo(5.43941f, 25.5223f);
483 path.lineTo(798267, -28871.1f);
484 path.lineTo(798267, -28871.1f);
485 path.lineTo(3.12512e+06f, -113102);
486 path.lineTo(3.12512e+06f, -113102);
487 path.cubicTo(5.16324e+06f, -186882, 8.15247e+06f, -295092, 1.1957e+07f, -432813);
488 path.cubicTo(1.95659e+07f, -708257, 3.04359e+07f, -1.10175e+06f, 4.34798e+07f, -1.57394e+06f);
489 path.cubicTo(6.95677e+07f, -2.51831e+06f, 1.04352e+08f, -3.77748e+06f, 1.39135e+08f, -5.03666e+06f);
490 path.cubicTo(1.73919e+08f, -6.29583e+06f, 2.08703e+08f, -7.555e+06f, 2.34791e+08f, -8.49938e+06f);
491 path.cubicTo(2.47835e+08f, -8.97157e+06f, 2.58705e+08f, -9.36506e+06f, 2.66314e+08f, -9.6405e+06f);
492 path.cubicTo(2.70118e+08f, -9.77823e+06f, 2.73108e+08f, -9.88644e+06f, 2.75146e+08f, -9.96022e+06f);
493 path.cubicTo(2.76165e+08f, -9.99711e+06f, 2.76946e+08f, -1.00254e+07f, 2.77473e+08f, -1.00444e+07f);
494 path.lineTo(2.78271e+08f, -1.00733e+07f);
495 path.lineTo(2.78271e+08f, -1.00733e+07f);
496 path.cubicTo(2.78271e+08f, -1.00733e+07f, 2.08703e+08f, -7.555e+06f, 135.238f, 23.3517f);
497 path.cubicTo(131.191f, 23.4981f, 125.995f, 23.7976f, 123.631f, 24.0206f);
498 path.cubicTo(121.267f, 24.2436f, 122.631f, 24.3056f, 126.677f, 24.1591f);
499 path.cubicTo(2.08703e+08f, -7.555e+06f, 2.78271e+08f, -1.00733e+07f, 2.78271e+08f, -1.00733e+07f);
500 path.lineTo(2.77473e+08f, -1.00444e+07f);
501 path.lineTo(2.77473e+08f, -1.00444e+07f);
502 path.cubicTo(2.76946e+08f, -1.00254e+07f, 2.76165e+08f, -9.99711e+06f, 2.75146e+08f, -9.96022e+06f);
503 path.cubicTo(2.73108e+08f, -9.88644e+06f, 2.70118e+08f, -9.77823e+06f, 2.66314e+08f, -9.6405e+06f);
504 path.cubicTo(2.58705e+08f, -9.36506e+06f, 2.47835e+08f, -8.97157e+06f, 2.34791e+08f, -8.49938e+06f);
505 path.cubicTo(2.08703e+08f, -7.555e+06f, 1.73919e+08f, -6.29583e+06f, 1.39135e+08f, -5.03666e+06f);
506 path.cubicTo(1.04352e+08f, -3.77749e+06f, 6.95677e+07f, -2.51831e+06f, 4.34798e+07f, -1.57394e+06f);
507 path.cubicTo(3.04359e+07f, -1.10175e+06f, 1.95659e+07f, -708258, 1.1957e+07f, -432814);
508 path.cubicTo(8.15248e+06f, -295092, 5.16324e+06f, -186883, 3.12513e+06f, -113103);
509 path.lineTo(798284, -28872);
510 path.lineTo(798284, -28872);
511 path.lineTo(22.4044f, 24.6677f);
512 path.lineTo(22.4044f, 24.6677f);
513 path.cubicTo(22.5186f, 24.5432f, 18.8134f, 24.6337f, 14.1287f, 24.8697f);
514 path.cubicTo(9.4439f, 25.1057f, 5.55359f, 25.3978f, 5.43941f, 25.5223f);
515 path.close();
516}
517
518static void build_path_simple_170666(SkPath& path) {
519 path.moveTo(126.677f, 24.1591f);
520 path.cubicTo(2.08703e+08f, -7.555e+06f, 2.78271e+08f, -1.00733e+07f, 2.78271e+08f, -1.00733e+07f);
521}
522
523// This used to assert in the SK_DEBUG build, as the clip step would fail with
524// too-few interations in our cubic-line intersection code. That code now runs
525// 24 interations (instead of 16).
526static void test_crbug_170666() {
527 SkPath path;
Yuqian Li3154a532017-09-06 13:33:30 -0400528 build_path_simple_170666(path);
Yuqian Lif13beef2017-09-14 17:15:04 -0400529 test_draw_AA_path(1000, 1000, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400530
531 build_path_170666(path);
Yuqian Lif13beef2017-09-14 17:15:04 -0400532 test_draw_AA_path(1000, 1000, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400533}
534
535
536static void test_tiny_path_convexity(skiatest::Reporter* reporter, const char* pathBug,
537 SkScalar tx, SkScalar ty, SkScalar scale) {
538 SkPath smallPath;
539 SkAssertResult(SkParsePath::FromSVGString(pathBug, &smallPath));
540 bool smallConvex = smallPath.isConvex();
541 SkPath largePath;
542 SkAssertResult(SkParsePath::FromSVGString(pathBug, &largePath));
543 SkMatrix matrix;
544 matrix.reset();
545 matrix.preTranslate(100, 100);
546 matrix.preScale(scale, scale);
547 largePath.transform(matrix);
548 bool largeConvex = largePath.isConvex();
549 REPORTER_ASSERT(reporter, smallConvex == largeConvex);
550}
551
552static void test_crbug_493450(skiatest::Reporter* reporter) {
553 const char reducedCase[] =
554 "M0,0"
555 "L0.0002, 0"
556 "L0.0002, 0.0002"
557 "L0.0001, 0.0001"
558 "L0,0.0002"
559 "Z";
560 test_tiny_path_convexity(reporter, reducedCase, 100, 100, 100000);
561 const char originalFiddleData[] =
562 "M-0.3383152268862998,-0.11217565719203619L-0.33846085183212765,-0.11212264406895281"
563 "L-0.338509393480737,-0.11210607966681395L-0.33857792286700894,-0.1121889121487573"
564 "L-0.3383866116636664,-0.11228834570924921L-0.33842087635680235,-0.11246078673250548"
565 "L-0.33809536177201055,-0.11245415228342878L-0.33797257995493996,-0.11216571641452182"
566 "L-0.33802112160354925,-0.11201996164188659L-0.33819815585141844,-0.11218559834671019Z";
567 test_tiny_path_convexity(reporter, originalFiddleData, 280081.4116670522f, 93268.04618493588f,
568 826357.3384828606f);
569}
570
571static void test_crbug_495894(skiatest::Reporter* reporter) {
572 const char originalFiddleData[] =
573 "M-0.34004273849857214,-0.11332803232216355L-0.34008271397389744,-0.11324483772714951"
574 "L-0.3401940742265893,-0.11324483772714951L-0.34017694188002134,-0.11329807920275889"
575 "L-0.3402026403998733,-0.11333468903941245L-0.34029972369709194,-0.11334134592705701"
576 "L-0.3403054344792813,-0.11344121970007795L-0.3403140006525653,-0.11351115418399343"
577 "L-0.34024261587519866,-0.11353446986281181L-0.3402197727464413,-0.11360442946144192"
578 "L-0.34013696640469604,-0.11359110237029302L-0.34009128014718143,-0.1135877707043939"
579 "L-0.3400598708451401,-0.11360776134112742L-0.34004273849857214,-0.11355112520064405"
580 "L-0.3400113291965308,-0.11355112520064405L-0.3399970522410575,-0.11359110237029302"
581 "L-0.33997135372120546,-0.11355112520064405L-0.3399627875479215,-0.11353780084493197"
582 "L-0.3399485105924481,-0.11350782354357004L-0.3400027630232468,-0.11346452910331437"
583 "L-0.3399485105924481,-0.11340126558629839L-0.33993994441916414,-0.11340126558629839"
584 "L-0.33988283659727087,-0.11331804756574679L-0.33989140277055485,-0.11324483772714951"
585 "L-0.33997991989448945,-0.11324483772714951L-0.3399856306766788,-0.11324483772714951"
586 "L-0.34002560615200417,-0.11334467443478255ZM-0.3400684370184241,-0.11338461985124307"
587 "L-0.340154098751264,-0.11341791238732665L-0.340162664924548,-0.1134378899559977"
588 "L-0.34017979727111597,-0.11340126558629839L-0.3401655203156427,-0.11338129083212668"
589 "L-0.34012268944922275,-0.11332137577529414L-0.34007414780061346,-0.11334467443478255Z"
590 "M-0.3400027630232468,-0.11290567901106024L-0.3400113291965308,-0.11298876531245433"
591 "L-0.33997991989448945,-0.11301535852306784L-0.33990282433493346,-0.11296217481488612"
592 "L-0.33993994441916414,-0.11288906492739594Z";
593 test_tiny_path_convexity(reporter, originalFiddleData, 22682.240000000005f,7819.72220766405f,
594 65536);
595}
596
597static void test_crbug_613918() {
598 SkPath path;
599 path.conicTo(-6.62478e-08f, 4.13885e-08f, -6.36935e-08f, 3.97927e-08f, 0.729058f);
600 path.quadTo(2.28206e-09f, -1.42572e-09f, 3.91919e-09f, -2.44852e-09f);
601 path.cubicTo(-16752.2f, -26792.9f, -21.4673f, 10.9347f, -8.57322f, -7.22739f);
602
603 // This call could lead to an assert or uninitialized read due to a failure
604 // to check the return value from SkCubicClipper::ChopMonoAtY.
605 path.contains(-1.84817e-08f, 1.15465e-08f);
606}
607
608static void test_addrect(skiatest::Reporter* reporter) {
609 SkPath path;
610 path.lineTo(0, 0);
611 path.addRect(SkRect::MakeWH(50, 100));
612 REPORTER_ASSERT(reporter, path.isRect(nullptr));
613
614 path.reset();
615 path.lineTo(FLT_EPSILON, FLT_EPSILON);
616 path.addRect(SkRect::MakeWH(50, 100));
617 REPORTER_ASSERT(reporter, !path.isRect(nullptr));
618
619 path.reset();
620 path.quadTo(0, 0, 0, 0);
621 path.addRect(SkRect::MakeWH(50, 100));
622 REPORTER_ASSERT(reporter, !path.isRect(nullptr));
623
624 path.reset();
625 path.conicTo(0, 0, 0, 0, 0.5f);
626 path.addRect(SkRect::MakeWH(50, 100));
627 REPORTER_ASSERT(reporter, !path.isRect(nullptr));
628
629 path.reset();
630 path.cubicTo(0, 0, 0, 0, 0, 0);
631 path.addRect(SkRect::MakeWH(50, 100));
632 REPORTER_ASSERT(reporter, !path.isRect(nullptr));
633}
634
635// Make sure we stay non-finite once we get there (unless we reset or rewind).
636static void test_addrect_isfinite(skiatest::Reporter* reporter) {
637 SkPath path;
638
639 path.addRect(SkRect::MakeWH(50, 100));
640 REPORTER_ASSERT(reporter, path.isFinite());
641
642 path.moveTo(0, 0);
643 path.lineTo(SK_ScalarInfinity, 42);
644 REPORTER_ASSERT(reporter, !path.isFinite());
645
646 path.addRect(SkRect::MakeWH(50, 100));
647 REPORTER_ASSERT(reporter, !path.isFinite());
648
649 path.reset();
650 REPORTER_ASSERT(reporter, path.isFinite());
651
652 path.addRect(SkRect::MakeWH(50, 100));
653 REPORTER_ASSERT(reporter, path.isFinite());
654}
655
656static void build_big_path(SkPath* path, bool reducedCase) {
657 if (reducedCase) {
658 path->moveTo(577330, 1971.72f);
659 path->cubicTo(10.7082f, -116.596f, 262.057f, 45.6468f, 294.694f, 1.96237f);
660 } else {
661 path->moveTo(60.1631f, 7.70567f);
662 path->quadTo(60.1631f, 7.70567f, 0.99474f, 0.901199f);
663 path->lineTo(577379, 1977.77f);
664 path->quadTo(577364, 1979.57f, 577325, 1980.26f);
665 path->quadTo(577286, 1980.95f, 577245, 1980.13f);
666 path->quadTo(577205, 1979.3f, 577187, 1977.45f);
667 path->quadTo(577168, 1975.6f, 577183, 1973.8f);
668 path->quadTo(577198, 1972, 577238, 1971.31f);
669 path->quadTo(577277, 1970.62f, 577317, 1971.45f);
670 path->quadTo(577330, 1971.72f, 577341, 1972.11f);
671 path->cubicTo(10.7082f, -116.596f, 262.057f, 45.6468f, 294.694f, 1.96237f);
672 path->moveTo(306.718f, -32.912f);
673 path->cubicTo(30.531f, 10.0005f, 1502.47f, 13.2804f, 84.3088f, 9.99601f);
674 }
675}
676
677static void test_clipped_cubic() {
678 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
679
680 // This path used to assert, because our cubic-chopping code incorrectly
681 // moved control points after the chop. This test should be run in SK_DEBUG
682 // mode to ensure that we no long assert.
683 SkPath path;
684 for (int doReducedCase = 0; doReducedCase <= 1; ++doReducedCase) {
685 build_big_path(&path, SkToBool(doReducedCase));
686
687 SkPaint paint;
688 for (int doAA = 0; doAA <= 1; ++doAA) {
689 paint.setAntiAlias(SkToBool(doAA));
690 surface->getCanvas()->drawPath(path, paint);
691 }
692 }
693}
694
695static void dump_if_ne(skiatest::Reporter* reporter, const SkRect& expected, const SkRect& bounds) {
696 if (expected != bounds) {
697 ERRORF(reporter, "path.getBounds() returned [%g %g %g %g], but expected [%g %g %g %g]",
698 bounds.left(), bounds.top(), bounds.right(), bounds.bottom(),
699 expected.left(), expected.top(), expected.right(), expected.bottom());
700 }
701}
702
703static void test_bounds_crbug_513799(skiatest::Reporter* reporter) {
704 SkPath path;
705#if 0
706 // As written these tests were failing on LLVM 4.2 MacMini Release mysteriously, so we've
707 // rewritten them to avoid this (compiler-bug?).
708 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(0, 0, 0, 0) == path.getBounds());
709
710 path.moveTo(-5, -8);
711 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(-5, -8, -5, -8) == path.getBounds());
712
713 path.addRect(SkRect::MakeLTRB(1, 2, 3, 4));
714 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(-5, -8, 3, 4) == path.getBounds());
715
716 path.moveTo(1, 2);
717 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(-5, -8, 3, 4) == path.getBounds());
718#else
719 dump_if_ne(reporter, SkRect::MakeLTRB(0, 0, 0, 0), path.getBounds());
720
721 path.moveTo(-5, -8); // should set the bounds
722 dump_if_ne(reporter, SkRect::MakeLTRB(-5, -8, -5, -8), path.getBounds());
723
724 path.addRect(SkRect::MakeLTRB(1, 2, 3, 4)); // should extend the bounds
725 dump_if_ne(reporter, SkRect::MakeLTRB(-5, -8, 3, 4), path.getBounds());
726
727 path.moveTo(1, 2); // don't expect this to have changed the bounds
728 dump_if_ne(reporter, SkRect::MakeLTRB(-5, -8, 3, 4), path.getBounds());
729#endif
730}
731
732#include "SkSurface.h"
733static void test_fuzz_crbug_627414(skiatest::Reporter* reporter) {
734 SkPath path;
735 path.moveTo(0, 0);
736 path.conicTo(3.58732e-43f, 2.72084f, 3.00392f, 3.00392f, 8.46e+37f);
Yuqian Lif13beef2017-09-14 17:15:04 -0400737 test_draw_AA_path(100, 100, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400738}
739
740// Inspired by http://ie.microsoft.com/testdrive/Performance/Chalkboard/
741// which triggered an assert, from a tricky cubic. This test replicates that
742// example, so we can ensure that we handle it (in SkEdge.cpp), and don't
743// assert in the SK_DEBUG build.
744static void test_tricky_cubic() {
745 const SkPoint pts[] = {
746 { SkDoubleToScalar(18.8943768), SkDoubleToScalar(129.121277) },
747 { SkDoubleToScalar(18.8937435), SkDoubleToScalar(129.121689) },
748 { SkDoubleToScalar(18.8950119), SkDoubleToScalar(129.120422) },
749 { SkDoubleToScalar(18.5030727), SkDoubleToScalar(129.13121) },
750 };
751
752 SkPath path;
753 path.moveTo(pts[0]);
754 path.cubicTo(pts[1], pts[2], pts[3]);
Yuqian Lif13beef2017-09-14 17:15:04 -0400755 test_draw_AA_path(19, 130, path);
Yuqian Li3154a532017-09-06 13:33:30 -0400756}
757
758// Inspired by http://code.google.com/p/chromium/issues/detail?id=141651
759//
760static void test_isfinite_after_transform(skiatest::Reporter* reporter) {
761 SkPath path;
762 path.quadTo(157, 366, 286, 208);
763 path.arcTo(37, 442, 315, 163, 957494590897113.0f);
764
765 SkMatrix matrix;
766 matrix.setScale(1000*1000, 1000*1000);
767
768 // Be sure that path::transform correctly updates isFinite and the bounds
769 // if the transformation overflows. The previous bug was that isFinite was
770 // set to true in this case, but the bounds were not set to empty (which
771 // they should be).
772 while (path.isFinite()) {
773 REPORTER_ASSERT(reporter, path.getBounds().isFinite());
774 REPORTER_ASSERT(reporter, !path.getBounds().isEmpty());
775 path.transform(matrix);
776 }
777 REPORTER_ASSERT(reporter, path.getBounds().isEmpty());
778
779 matrix.setTranslate(SK_Scalar1, SK_Scalar1);
780 path.transform(matrix);
781 // we need to still be non-finite
782 REPORTER_ASSERT(reporter, !path.isFinite());
783 REPORTER_ASSERT(reporter, path.getBounds().isEmpty());
784}
785
786static void add_corner_arc(SkPath* path, const SkRect& rect,
787 SkScalar xIn, SkScalar yIn,
788 int startAngle)
789{
790
791 SkScalar rx = SkMinScalar(rect.width(), xIn);
792 SkScalar ry = SkMinScalar(rect.height(), yIn);
793
794 SkRect arcRect;
795 arcRect.set(-rx, -ry, rx, ry);
796 switch (startAngle) {
797 case 0:
798 arcRect.offset(rect.fRight - arcRect.fRight, rect.fBottom - arcRect.fBottom);
799 break;
800 case 90:
801 arcRect.offset(rect.fLeft - arcRect.fLeft, rect.fBottom - arcRect.fBottom);
802 break;
803 case 180:
804 arcRect.offset(rect.fLeft - arcRect.fLeft, rect.fTop - arcRect.fTop);
805 break;
806 case 270:
807 arcRect.offset(rect.fRight - arcRect.fRight, rect.fTop - arcRect.fTop);
808 break;
809 default:
810 break;
811 }
812
813 path->arcTo(arcRect, SkIntToScalar(startAngle), SkIntToScalar(90), false);
814}
815
816static void make_arb_round_rect(SkPath* path, const SkRect& r,
817 SkScalar xCorner, SkScalar yCorner) {
818 // we are lazy here and use the same x & y for each corner
819 add_corner_arc(path, r, xCorner, yCorner, 270);
820 add_corner_arc(path, r, xCorner, yCorner, 0);
821 add_corner_arc(path, r, xCorner, yCorner, 90);
822 add_corner_arc(path, r, xCorner, yCorner, 180);
823 path->close();
824}
825
826// Chrome creates its own round rects with each corner possibly being different.
827// Performance will suffer if they are not convex.
828// Note: PathBench::ArbRoundRectBench performs almost exactly
829// the same test (but with drawing)
830static void test_arb_round_rect_is_convex(skiatest::Reporter* reporter) {
831 SkRandom rand;
832 SkRect r;
833
834 for (int i = 0; i < 5000; ++i) {
835
836 SkScalar size = rand.nextUScalar1() * 30;
837 if (size < SK_Scalar1) {
838 continue;
839 }
840 r.fLeft = rand.nextUScalar1() * 300;
841 r.fTop = rand.nextUScalar1() * 300;
842 r.fRight = r.fLeft + 2 * size;
843 r.fBottom = r.fTop + 2 * size;
844
845 SkPath temp;
846
847 make_arb_round_rect(&temp, r, r.width() / 10, r.height() / 15);
848
849 REPORTER_ASSERT(reporter, temp.isConvex());
850 }
851}
852
853// Chrome will sometimes create a 0 radius round rect. The degenerate
854// quads prevent the path from being converted to a rect
855// Note: PathBench::ArbRoundRectBench performs almost exactly
856// the same test (but with drawing)
857static void test_arb_zero_rad_round_rect_is_rect(skiatest::Reporter* reporter) {
858 SkRandom rand;
859 SkRect r;
860
861 for (int i = 0; i < 5000; ++i) {
862
863 SkScalar size = rand.nextUScalar1() * 30;
864 if (size < SK_Scalar1) {
865 continue;
866 }
867 r.fLeft = rand.nextUScalar1() * 300;
868 r.fTop = rand.nextUScalar1() * 300;
869 r.fRight = r.fLeft + 2 * size;
870 r.fBottom = r.fTop + 2 * size;
871
872 SkPath temp;
873
874 make_arb_round_rect(&temp, r, 0, 0);
875
876 SkRect result;
877 REPORTER_ASSERT(reporter, temp.isRect(&result));
878 REPORTER_ASSERT(reporter, r == result);
879 }
880}
881
882static void test_rect_isfinite(skiatest::Reporter* reporter) {
883 const SkScalar inf = SK_ScalarInfinity;
884 const SkScalar negInf = SK_ScalarNegativeInfinity;
885 const SkScalar nan = SK_ScalarNaN;
886
887 SkRect r;
888 r.setEmpty();
889 REPORTER_ASSERT(reporter, r.isFinite());
890 r.set(0, 0, inf, negInf);
891 REPORTER_ASSERT(reporter, !r.isFinite());
892 r.set(0, 0, nan, 0);
893 REPORTER_ASSERT(reporter, !r.isFinite());
894
895 SkPoint pts[] = {
896 { 0, 0 },
897 { SK_Scalar1, 0 },
898 { 0, SK_Scalar1 },
899 };
900
901 bool isFine = r.setBoundsCheck(pts, 3);
902 REPORTER_ASSERT(reporter, isFine);
903 REPORTER_ASSERT(reporter, !r.isEmpty());
904
905 pts[1].set(inf, 0);
906 isFine = r.setBoundsCheck(pts, 3);
907 REPORTER_ASSERT(reporter, !isFine);
908 REPORTER_ASSERT(reporter, r.isEmpty());
909
910 pts[1].set(nan, 0);
911 isFine = r.setBoundsCheck(pts, 3);
912 REPORTER_ASSERT(reporter, !isFine);
913 REPORTER_ASSERT(reporter, r.isEmpty());
914}
915
916static void test_path_isfinite(skiatest::Reporter* reporter) {
917 const SkScalar inf = SK_ScalarInfinity;
918 const SkScalar negInf = SK_ScalarNegativeInfinity;
919 const SkScalar nan = SK_ScalarNaN;
920
921 SkPath path;
922 REPORTER_ASSERT(reporter, path.isFinite());
923
924 path.reset();
925 REPORTER_ASSERT(reporter, path.isFinite());
926
927 path.reset();
928 path.moveTo(SK_Scalar1, 0);
929 REPORTER_ASSERT(reporter, path.isFinite());
930
931 path.reset();
932 path.moveTo(inf, negInf);
933 REPORTER_ASSERT(reporter, !path.isFinite());
934
935 path.reset();
936 path.moveTo(nan, 0);
937 REPORTER_ASSERT(reporter, !path.isFinite());
938}
939
940static void test_isfinite(skiatest::Reporter* reporter) {
941 test_rect_isfinite(reporter);
942 test_path_isfinite(reporter);
943}
944
945static void test_islastcontourclosed(skiatest::Reporter* reporter) {
946 SkPath path;
947 REPORTER_ASSERT(reporter, !path.isLastContourClosed());
948 path.moveTo(0, 0);
949 REPORTER_ASSERT(reporter, !path.isLastContourClosed());
950 path.close();
951 REPORTER_ASSERT(reporter, path.isLastContourClosed());
952 path.lineTo(100, 100);
953 REPORTER_ASSERT(reporter, !path.isLastContourClosed());
954 path.moveTo(200, 200);
955 REPORTER_ASSERT(reporter, !path.isLastContourClosed());
956 path.close();
957 REPORTER_ASSERT(reporter, path.isLastContourClosed());
958 path.moveTo(0, 0);
959 REPORTER_ASSERT(reporter, !path.isLastContourClosed());
960}
961
962// assert that we always
963// start with a moveTo
964// only have 1 moveTo
965// only have Lines after that
966// end with a single close
967// only have (at most) 1 close
968//
969static void test_poly(skiatest::Reporter* reporter, const SkPath& path,
970 const SkPoint srcPts[], bool expectClose) {
971 SkPath::RawIter iter(path);
972 SkPoint pts[4];
973
974 bool firstTime = true;
975 bool foundClose = false;
976 for (;;) {
977 switch (iter.next(pts)) {
978 case SkPath::kMove_Verb:
979 REPORTER_ASSERT(reporter, firstTime);
980 REPORTER_ASSERT(reporter, pts[0] == srcPts[0]);
981 srcPts++;
982 firstTime = false;
983 break;
984 case SkPath::kLine_Verb:
985 REPORTER_ASSERT(reporter, !firstTime);
986 REPORTER_ASSERT(reporter, pts[1] == srcPts[0]);
987 srcPts++;
988 break;
989 case SkPath::kQuad_Verb:
990 REPORTER_ASSERT_MESSAGE(reporter, false, "unexpected quad verb");
991 break;
992 case SkPath::kConic_Verb:
993 REPORTER_ASSERT_MESSAGE(reporter, false, "unexpected conic verb");
994 break;
995 case SkPath::kCubic_Verb:
996 REPORTER_ASSERT_MESSAGE(reporter, false, "unexpected cubic verb");
997 break;
998 case SkPath::kClose_Verb:
999 REPORTER_ASSERT(reporter, !firstTime);
1000 REPORTER_ASSERT(reporter, !foundClose);
1001 REPORTER_ASSERT(reporter, expectClose);
1002 foundClose = true;
1003 break;
1004 case SkPath::kDone_Verb:
1005 goto DONE;
1006 }
1007 }
1008DONE:
1009 REPORTER_ASSERT(reporter, foundClose == expectClose);
1010}
1011
1012static void test_addPoly(skiatest::Reporter* reporter) {
1013 SkPoint pts[32];
1014 SkRandom rand;
1015
1016 for (size_t i = 0; i < SK_ARRAY_COUNT(pts); ++i) {
1017 pts[i].fX = rand.nextSScalar1();
1018 pts[i].fY = rand.nextSScalar1();
1019 }
1020
1021 for (int doClose = 0; doClose <= 1; ++doClose) {
1022 for (size_t count = 1; count <= SK_ARRAY_COUNT(pts); ++count) {
1023 SkPath path;
1024 path.addPoly(pts, SkToInt(count), SkToBool(doClose));
1025 test_poly(reporter, path, pts, SkToBool(doClose));
1026 }
1027 }
1028}
1029
1030static void test_strokerec(skiatest::Reporter* reporter) {
1031 SkStrokeRec rec(SkStrokeRec::kFill_InitStyle);
1032 REPORTER_ASSERT(reporter, rec.isFillStyle());
1033
1034 rec.setHairlineStyle();
1035 REPORTER_ASSERT(reporter, rec.isHairlineStyle());
1036
1037 rec.setStrokeStyle(SK_Scalar1, false);
1038 REPORTER_ASSERT(reporter, SkStrokeRec::kStroke_Style == rec.getStyle());
1039
1040 rec.setStrokeStyle(SK_Scalar1, true);
1041 REPORTER_ASSERT(reporter, SkStrokeRec::kStrokeAndFill_Style == rec.getStyle());
1042
1043 rec.setStrokeStyle(0, false);
1044 REPORTER_ASSERT(reporter, SkStrokeRec::kHairline_Style == rec.getStyle());
1045
1046 rec.setStrokeStyle(0, true);
1047 REPORTER_ASSERT(reporter, SkStrokeRec::kFill_Style == rec.getStyle());
1048}
1049
1050// Set this for paths that don't have a consistent direction such as a bowtie.
1051// (cheapComputeDirection is not expected to catch these.)
1052const SkPathPriv::FirstDirection kDontCheckDir = static_cast<SkPathPriv::FirstDirection>(-1);
1053
1054static void check_direction(skiatest::Reporter* reporter, const SkPath& path,
1055 SkPathPriv::FirstDirection expected) {
1056 if (expected == kDontCheckDir) {
1057 return;
1058 }
1059 SkPath copy(path); // we make a copy so that we don't cache the result on the passed in path.
1060
1061 SkPathPriv::FirstDirection dir;
1062 if (SkPathPriv::CheapComputeFirstDirection(copy, &dir)) {
1063 REPORTER_ASSERT(reporter, dir == expected);
1064 } else {
1065 REPORTER_ASSERT(reporter, SkPathPriv::kUnknown_FirstDirection == expected);
1066 }
1067}
1068
1069static void test_direction(skiatest::Reporter* reporter) {
1070 size_t i;
1071 SkPath path;
1072 REPORTER_ASSERT(reporter, !SkPathPriv::CheapComputeFirstDirection(path, nullptr));
1073 REPORTER_ASSERT(reporter, !SkPathPriv::CheapIsFirstDirection(path, SkPathPriv::kCW_FirstDirection));
1074 REPORTER_ASSERT(reporter, !SkPathPriv::CheapIsFirstDirection(path, SkPathPriv::kCCW_FirstDirection));
1075 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(path, SkPathPriv::kUnknown_FirstDirection));
1076
1077 static const char* gDegen[] = {
1078 "M 10 10",
1079 "M 10 10 M 20 20",
1080 "M 10 10 L 20 20",
1081 "M 10 10 L 10 10 L 10 10",
1082 "M 10 10 Q 10 10 10 10",
1083 "M 10 10 C 10 10 10 10 10 10",
1084 };
1085 for (i = 0; i < SK_ARRAY_COUNT(gDegen); ++i) {
1086 path.reset();
1087 bool valid = SkParsePath::FromSVGString(gDegen[i], &path);
1088 REPORTER_ASSERT(reporter, valid);
1089 REPORTER_ASSERT(reporter, !SkPathPriv::CheapComputeFirstDirection(path, nullptr));
1090 }
1091
1092 static const char* gCW[] = {
1093 "M 10 10 L 10 10 Q 20 10 20 20",
1094 "M 10 10 C 20 10 20 20 20 20",
1095 "M 20 10 Q 20 20 30 20 L 10 20", // test double-back at y-max
1096 // rect with top two corners replaced by cubics with identical middle
1097 // control points
1098 "M 10 10 C 10 0 10 0 20 0 L 40 0 C 50 0 50 0 50 10",
1099 "M 20 10 L 0 10 Q 10 10 20 0", // left, degenerate serif
1100 };
1101 for (i = 0; i < SK_ARRAY_COUNT(gCW); ++i) {
1102 path.reset();
1103 bool valid = SkParsePath::FromSVGString(gCW[i], &path);
1104 REPORTER_ASSERT(reporter, valid);
1105 check_direction(reporter, path, SkPathPriv::kCW_FirstDirection);
1106 }
1107
1108 static const char* gCCW[] = {
1109 "M 10 10 L 10 10 Q 20 10 20 -20",
1110 "M 10 10 C 20 10 20 -20 20 -20",
1111 "M 20 10 Q 20 20 10 20 L 30 20", // test double-back at y-max
1112 // rect with top two corners replaced by cubics with identical middle
1113 // control points
1114 "M 50 10 C 50 0 50 0 40 0 L 20 0 C 10 0 10 0 10 10",
1115 "M 10 10 L 30 10 Q 20 10 10 0", // right, degenerate serif
1116 };
1117 for (i = 0; i < SK_ARRAY_COUNT(gCCW); ++i) {
1118 path.reset();
1119 bool valid = SkParsePath::FromSVGString(gCCW[i], &path);
1120 REPORTER_ASSERT(reporter, valid);
1121 check_direction(reporter, path, SkPathPriv::kCCW_FirstDirection);
1122 }
1123
1124 // Test two donuts, each wound a different direction. Only the outer contour
1125 // determines the cheap direction
1126 path.reset();
1127 path.addCircle(0, 0, SkIntToScalar(2), SkPath::kCW_Direction);
1128 path.addCircle(0, 0, SkIntToScalar(1), SkPath::kCCW_Direction);
1129 check_direction(reporter, path, SkPathPriv::kCW_FirstDirection);
1130
1131 path.reset();
1132 path.addCircle(0, 0, SkIntToScalar(1), SkPath::kCW_Direction);
1133 path.addCircle(0, 0, SkIntToScalar(2), SkPath::kCCW_Direction);
1134 check_direction(reporter, path, SkPathPriv::kCCW_FirstDirection);
1135
1136 // triangle with one point really far from the origin.
1137 path.reset();
1138 // the first point is roughly 1.05e10, 1.05e10
1139 path.moveTo(SkBits2Float(0x501c7652), SkBits2Float(0x501c7652));
1140 path.lineTo(110 * SK_Scalar1, -10 * SK_Scalar1);
1141 path.lineTo(-10 * SK_Scalar1, 60 * SK_Scalar1);
1142 check_direction(reporter, path, SkPathPriv::kCCW_FirstDirection);
1143
1144 path.reset();
1145 path.conicTo(20, 0, 20, 20, 0.5f);
1146 path.close();
1147 check_direction(reporter, path, SkPathPriv::kCW_FirstDirection);
1148
1149 path.reset();
1150 path.lineTo(1, 1e7f);
1151 path.lineTo(1e7f, 2e7f);
1152 path.close();
1153 REPORTER_ASSERT(reporter, SkPath::kConvex_Convexity == path.getConvexity());
1154 check_direction(reporter, path, SkPathPriv::kCCW_FirstDirection);
1155}
1156
1157static void add_rect(SkPath* path, const SkRect& r) {
1158 path->moveTo(r.fLeft, r.fTop);
1159 path->lineTo(r.fRight, r.fTop);
1160 path->lineTo(r.fRight, r.fBottom);
1161 path->lineTo(r.fLeft, r.fBottom);
1162 path->close();
1163}
1164
1165static void test_bounds(skiatest::Reporter* reporter) {
1166 static const SkRect rects[] = {
1167 { SkIntToScalar(10), SkIntToScalar(160), SkIntToScalar(610), SkIntToScalar(160) },
1168 { SkIntToScalar(610), SkIntToScalar(160), SkIntToScalar(610), SkIntToScalar(199) },
1169 { SkIntToScalar(10), SkIntToScalar(198), SkIntToScalar(610), SkIntToScalar(199) },
1170 { SkIntToScalar(10), SkIntToScalar(160), SkIntToScalar(10), SkIntToScalar(199) },
1171 };
1172
1173 SkPath path0, path1;
1174 for (size_t i = 0; i < SK_ARRAY_COUNT(rects); ++i) {
1175 path0.addRect(rects[i]);
1176 add_rect(&path1, rects[i]);
1177 }
1178
1179 REPORTER_ASSERT(reporter, path0.getBounds() == path1.getBounds());
1180}
1181
1182static void stroke_cubic(const SkPoint pts[4]) {
1183 SkPath path;
1184 path.moveTo(pts[0]);
1185 path.cubicTo(pts[1], pts[2], pts[3]);
1186
1187 SkPaint paint;
1188 paint.setStyle(SkPaint::kStroke_Style);
1189 paint.setStrokeWidth(SK_Scalar1 * 2);
1190
1191 SkPath fill;
1192 paint.getFillPath(path, &fill);
1193}
1194
1195// just ensure this can run w/o any SkASSERTS firing in the debug build
1196// we used to assert due to differences in how we determine a degenerate vector
1197// but that was fixed with the introduction of SkPoint::CanNormalize
1198static void stroke_tiny_cubic() {
1199 SkPoint p0[] = {
1200 { 372.0f, 92.0f },
1201 { 372.0f, 92.0f },
1202 { 372.0f, 92.0f },
1203 { 372.0f, 92.0f },
1204 };
1205
1206 stroke_cubic(p0);
1207
1208 SkPoint p1[] = {
1209 { 372.0f, 92.0f },
1210 { 372.0007f, 92.000755f },
1211 { 371.99927f, 92.003922f },
1212 { 371.99826f, 92.003899f },
1213 };
1214
1215 stroke_cubic(p1);
1216}
1217
1218static void check_close(skiatest::Reporter* reporter, const SkPath& path) {
1219 for (int i = 0; i < 2; ++i) {
1220 SkPath::Iter iter(path, SkToBool(i));
1221 SkPoint mv;
1222 SkPoint pts[4];
1223 SkPath::Verb v;
1224 int nMT = 0;
1225 int nCL = 0;
1226 mv.set(0, 0);
1227 while (SkPath::kDone_Verb != (v = iter.next(pts))) {
1228 switch (v) {
1229 case SkPath::kMove_Verb:
1230 mv = pts[0];
1231 ++nMT;
1232 break;
1233 case SkPath::kClose_Verb:
1234 REPORTER_ASSERT(reporter, mv == pts[0]);
1235 ++nCL;
1236 break;
1237 default:
1238 break;
1239 }
1240 }
1241 // if we force a close on the interator we should have a close
1242 // for every moveTo
1243 REPORTER_ASSERT(reporter, !i || nMT == nCL);
1244 }
1245}
1246
1247static void test_close(skiatest::Reporter* reporter) {
1248 SkPath closePt;
1249 closePt.moveTo(0, 0);
1250 closePt.close();
1251 check_close(reporter, closePt);
1252
1253 SkPath openPt;
1254 openPt.moveTo(0, 0);
1255 check_close(reporter, openPt);
1256
1257 SkPath empty;
1258 check_close(reporter, empty);
1259 empty.close();
1260 check_close(reporter, empty);
1261
1262 SkPath rect;
1263 rect.addRect(SK_Scalar1, SK_Scalar1, 10 * SK_Scalar1, 10*SK_Scalar1);
1264 check_close(reporter, rect);
1265 rect.close();
1266 check_close(reporter, rect);
1267
1268 SkPath quad;
1269 quad.quadTo(SK_Scalar1, SK_Scalar1, 10 * SK_Scalar1, 10*SK_Scalar1);
1270 check_close(reporter, quad);
1271 quad.close();
1272 check_close(reporter, quad);
1273
1274 SkPath cubic;
1275 quad.cubicTo(SK_Scalar1, SK_Scalar1, 10 * SK_Scalar1,
1276 10*SK_Scalar1, 20 * SK_Scalar1, 20*SK_Scalar1);
1277 check_close(reporter, cubic);
1278 cubic.close();
1279 check_close(reporter, cubic);
1280
1281 SkPath line;
1282 line.moveTo(SK_Scalar1, SK_Scalar1);
1283 line.lineTo(10 * SK_Scalar1, 10*SK_Scalar1);
1284 check_close(reporter, line);
1285 line.close();
1286 check_close(reporter, line);
1287
1288 SkPath rect2;
1289 rect2.addRect(SK_Scalar1, SK_Scalar1, 10 * SK_Scalar1, 10*SK_Scalar1);
1290 rect2.close();
1291 rect2.addRect(SK_Scalar1, SK_Scalar1, 10 * SK_Scalar1, 10*SK_Scalar1);
1292 check_close(reporter, rect2);
1293 rect2.close();
1294 check_close(reporter, rect2);
1295
1296 SkPath oval3;
1297 oval3.addOval(SkRect::MakeWH(SK_Scalar1*100,SK_Scalar1*100));
1298 oval3.close();
1299 oval3.addOval(SkRect::MakeWH(SK_Scalar1*200,SK_Scalar1*200));
1300 check_close(reporter, oval3);
1301 oval3.close();
1302 check_close(reporter, oval3);
1303
1304 SkPath moves;
1305 moves.moveTo(SK_Scalar1, SK_Scalar1);
1306 moves.moveTo(5 * SK_Scalar1, SK_Scalar1);
1307 moves.moveTo(SK_Scalar1, 10 * SK_Scalar1);
1308 moves.moveTo(10 *SK_Scalar1, SK_Scalar1);
1309 check_close(reporter, moves);
1310
1311 stroke_tiny_cubic();
1312}
1313
1314static void check_convexity(skiatest::Reporter* reporter, const SkPath& path,
1315 SkPath::Convexity expected) {
1316 SkPath copy(path); // we make a copy so that we don't cache the result on the passed in path.
1317 SkPath::Convexity c = copy.getConvexity();
1318 REPORTER_ASSERT(reporter, c == expected);
1319}
1320
1321static void test_path_crbug389050(skiatest::Reporter* reporter) {
1322 SkPath tinyConvexPolygon;
1323 tinyConvexPolygon.moveTo(600.131559f, 800.112512f);
1324 tinyConvexPolygon.lineTo(600.161735f, 800.118627f);
1325 tinyConvexPolygon.lineTo(600.148962f, 800.142338f);
1326 tinyConvexPolygon.lineTo(600.134891f, 800.137724f);
1327 tinyConvexPolygon.close();
1328 tinyConvexPolygon.getConvexity();
1329 check_convexity(reporter, tinyConvexPolygon, SkPath::kConvex_Convexity);
1330 check_direction(reporter, tinyConvexPolygon, SkPathPriv::kCW_FirstDirection);
1331
1332 SkPath platTriangle;
1333 platTriangle.moveTo(0, 0);
1334 platTriangle.lineTo(200, 0);
1335 platTriangle.lineTo(100, 0.04f);
1336 platTriangle.close();
1337 platTriangle.getConvexity();
1338 check_direction(reporter, platTriangle, SkPathPriv::kCW_FirstDirection);
1339
1340 platTriangle.reset();
1341 platTriangle.moveTo(0, 0);
1342 platTriangle.lineTo(200, 0);
1343 platTriangle.lineTo(100, 0.03f);
1344 platTriangle.close();
1345 platTriangle.getConvexity();
1346 check_direction(reporter, platTriangle, SkPathPriv::kCW_FirstDirection);
1347}
1348
1349static void test_convexity2(skiatest::Reporter* reporter) {
1350 SkPath pt;
1351 pt.moveTo(0, 0);
1352 pt.close();
1353 check_convexity(reporter, pt, SkPath::kConvex_Convexity);
1354 check_direction(reporter, pt, SkPathPriv::kUnknown_FirstDirection);
1355
1356 SkPath line;
1357 line.moveTo(12*SK_Scalar1, 20*SK_Scalar1);
1358 line.lineTo(-12*SK_Scalar1, -20*SK_Scalar1);
1359 line.close();
1360 check_convexity(reporter, line, SkPath::kConvex_Convexity);
1361 check_direction(reporter, line, SkPathPriv::kUnknown_FirstDirection);
1362
1363 SkPath triLeft;
1364 triLeft.moveTo(0, 0);
1365 triLeft.lineTo(SK_Scalar1, 0);
1366 triLeft.lineTo(SK_Scalar1, SK_Scalar1);
1367 triLeft.close();
1368 check_convexity(reporter, triLeft, SkPath::kConvex_Convexity);
1369 check_direction(reporter, triLeft, SkPathPriv::kCW_FirstDirection);
1370
1371 SkPath triRight;
1372 triRight.moveTo(0, 0);
1373 triRight.lineTo(-SK_Scalar1, 0);
1374 triRight.lineTo(SK_Scalar1, SK_Scalar1);
1375 triRight.close();
1376 check_convexity(reporter, triRight, SkPath::kConvex_Convexity);
1377 check_direction(reporter, triRight, SkPathPriv::kCCW_FirstDirection);
1378
1379 SkPath square;
1380 square.moveTo(0, 0);
1381 square.lineTo(SK_Scalar1, 0);
1382 square.lineTo(SK_Scalar1, SK_Scalar1);
1383 square.lineTo(0, SK_Scalar1);
1384 square.close();
1385 check_convexity(reporter, square, SkPath::kConvex_Convexity);
1386 check_direction(reporter, square, SkPathPriv::kCW_FirstDirection);
1387
1388 SkPath redundantSquare;
1389 redundantSquare.moveTo(0, 0);
1390 redundantSquare.lineTo(0, 0);
1391 redundantSquare.lineTo(0, 0);
1392 redundantSquare.lineTo(SK_Scalar1, 0);
1393 redundantSquare.lineTo(SK_Scalar1, 0);
1394 redundantSquare.lineTo(SK_Scalar1, 0);
1395 redundantSquare.lineTo(SK_Scalar1, SK_Scalar1);
1396 redundantSquare.lineTo(SK_Scalar1, SK_Scalar1);
1397 redundantSquare.lineTo(SK_Scalar1, SK_Scalar1);
1398 redundantSquare.lineTo(0, SK_Scalar1);
1399 redundantSquare.lineTo(0, SK_Scalar1);
1400 redundantSquare.lineTo(0, SK_Scalar1);
1401 redundantSquare.close();
1402 check_convexity(reporter, redundantSquare, SkPath::kConvex_Convexity);
1403 check_direction(reporter, redundantSquare, SkPathPriv::kCW_FirstDirection);
1404
1405 SkPath bowTie;
1406 bowTie.moveTo(0, 0);
1407 bowTie.lineTo(0, 0);
1408 bowTie.lineTo(0, 0);
1409 bowTie.lineTo(SK_Scalar1, SK_Scalar1);
1410 bowTie.lineTo(SK_Scalar1, SK_Scalar1);
1411 bowTie.lineTo(SK_Scalar1, SK_Scalar1);
1412 bowTie.lineTo(SK_Scalar1, 0);
1413 bowTie.lineTo(SK_Scalar1, 0);
1414 bowTie.lineTo(SK_Scalar1, 0);
1415 bowTie.lineTo(0, SK_Scalar1);
1416 bowTie.lineTo(0, SK_Scalar1);
1417 bowTie.lineTo(0, SK_Scalar1);
1418 bowTie.close();
1419 check_convexity(reporter, bowTie, SkPath::kConcave_Convexity);
1420 check_direction(reporter, bowTie, kDontCheckDir);
1421
1422 SkPath spiral;
1423 spiral.moveTo(0, 0);
1424 spiral.lineTo(100*SK_Scalar1, 0);
1425 spiral.lineTo(100*SK_Scalar1, 100*SK_Scalar1);
1426 spiral.lineTo(0, 100*SK_Scalar1);
1427 spiral.lineTo(0, 50*SK_Scalar1);
1428 spiral.lineTo(50*SK_Scalar1, 50*SK_Scalar1);
1429 spiral.lineTo(50*SK_Scalar1, 75*SK_Scalar1);
1430 spiral.close();
1431 check_convexity(reporter, spiral, SkPath::kConcave_Convexity);
1432 check_direction(reporter, spiral, kDontCheckDir);
1433
1434 SkPath dent;
1435 dent.moveTo(0, 0);
1436 dent.lineTo(100*SK_Scalar1, 100*SK_Scalar1);
1437 dent.lineTo(0, 100*SK_Scalar1);
1438 dent.lineTo(-50*SK_Scalar1, 200*SK_Scalar1);
1439 dent.lineTo(-200*SK_Scalar1, 100*SK_Scalar1);
1440 dent.close();
1441 check_convexity(reporter, dent, SkPath::kConcave_Convexity);
1442 check_direction(reporter, dent, SkPathPriv::kCW_FirstDirection);
1443
1444 // https://bug.skia.org/2235
1445 SkPath strokedSin;
1446 for (int i = 0; i < 2000; i++) {
1447 SkScalar x = SkIntToScalar(i) / 2;
1448 SkScalar y = 500 - (x + SkScalarSin(x / 100) * 40) / 3;
1449 if (0 == i) {
1450 strokedSin.moveTo(x, y);
1451 } else {
1452 strokedSin.lineTo(x, y);
1453 }
1454 }
1455 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
1456 stroke.setStrokeStyle(2 * SK_Scalar1);
1457 stroke.applyToPath(&strokedSin, strokedSin);
1458 check_convexity(reporter, strokedSin, SkPath::kConcave_Convexity);
1459 check_direction(reporter, strokedSin, kDontCheckDir);
1460
1461 // http://crbug.com/412640
1462 SkPath degenerateConcave;
1463 degenerateConcave.moveTo(148.67912f, 191.875f);
1464 degenerateConcave.lineTo(470.37695f, 7.5f);
1465 degenerateConcave.lineTo(148.67912f, 191.875f);
1466 degenerateConcave.lineTo(41.446522f, 376.25f);
1467 degenerateConcave.lineTo(-55.971577f, 460.0f);
1468 degenerateConcave.lineTo(41.446522f, 376.25f);
1469 check_convexity(reporter, degenerateConcave, SkPath::kConcave_Convexity);
1470 check_direction(reporter, degenerateConcave, SkPathPriv::kUnknown_FirstDirection);
1471
1472 // http://crbug.com/433683
1473 SkPath badFirstVector;
1474 badFirstVector.moveTo(501.087708f, 319.610352f);
1475 badFirstVector.lineTo(501.087708f, 319.610352f);
1476 badFirstVector.cubicTo(501.087677f, 319.610321f, 449.271606f, 258.078674f, 395.084564f, 198.711182f);
1477 badFirstVector.cubicTo(358.967072f, 159.140717f, 321.910553f, 120.650436f, 298.442322f, 101.955399f);
1478 badFirstVector.lineTo(301.557678f, 98.044601f);
1479 badFirstVector.cubicTo(325.283844f, 116.945084f, 362.615204f, 155.720825f, 398.777557f, 195.340454f);
1480 badFirstVector.cubicTo(453.031860f, 254.781662f, 504.912262f, 316.389618f, 504.912292f, 316.389648f);
1481 badFirstVector.lineTo(504.912292f, 316.389648f);
1482 badFirstVector.lineTo(501.087708f, 319.610352f);
1483 badFirstVector.close();
1484 check_convexity(reporter, badFirstVector, SkPath::kConcave_Convexity);
1485}
1486
1487static void check_convex_bounds(skiatest::Reporter* reporter, const SkPath& p,
1488 const SkRect& bounds) {
1489 REPORTER_ASSERT(reporter, p.isConvex());
1490 REPORTER_ASSERT(reporter, p.getBounds() == bounds);
1491
1492 SkPath p2(p);
1493 REPORTER_ASSERT(reporter, p2.isConvex());
1494 REPORTER_ASSERT(reporter, p2.getBounds() == bounds);
1495
1496 SkPath other;
1497 other.swap(p2);
1498 REPORTER_ASSERT(reporter, other.isConvex());
1499 REPORTER_ASSERT(reporter, other.getBounds() == bounds);
1500}
1501
1502static void setFromString(SkPath* path, const char str[]) {
1503 bool first = true;
1504 while (str) {
1505 SkScalar x, y;
1506 str = SkParse::FindScalar(str, &x);
1507 if (nullptr == str) {
1508 break;
1509 }
1510 str = SkParse::FindScalar(str, &y);
1511 SkASSERT(str);
1512 if (first) {
1513 path->moveTo(x, y);
1514 first = false;
1515 } else {
1516 path->lineTo(x, y);
1517 }
1518 }
1519}
1520
1521static void test_convexity(skiatest::Reporter* reporter) {
1522 SkPath path;
1523
1524 check_convexity(reporter, path, SkPath::kConvex_Convexity);
1525 path.addCircle(0, 0, SkIntToScalar(10));
1526 check_convexity(reporter, path, SkPath::kConvex_Convexity);
1527 path.addCircle(0, 0, SkIntToScalar(10)); // 2nd circle
1528 check_convexity(reporter, path, SkPath::kConcave_Convexity);
1529
1530 path.reset();
1531 path.addRect(0, 0, SkIntToScalar(10), SkIntToScalar(10), SkPath::kCCW_Direction);
1532 check_convexity(reporter, path, SkPath::kConvex_Convexity);
1533 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(path, SkPathPriv::kCCW_FirstDirection));
1534
1535 path.reset();
1536 path.addRect(0, 0, SkIntToScalar(10), SkIntToScalar(10), SkPath::kCW_Direction);
1537 check_convexity(reporter, path, SkPath::kConvex_Convexity);
1538 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(path, SkPathPriv::kCW_FirstDirection));
1539
1540 path.reset();
1541 path.quadTo(100, 100, 50, 50); // This is a convex path from GM:convexpaths
1542 check_convexity(reporter, path, SkPath::kConvex_Convexity);
1543
1544 static const struct {
1545 const char* fPathStr;
1546 SkPath::Convexity fExpectedConvexity;
1547 SkPathPriv::FirstDirection fExpectedDirection;
1548 } gRec[] = {
1549 { "", SkPath::kConvex_Convexity, SkPathPriv::kUnknown_FirstDirection },
1550 { "0 0", SkPath::kConvex_Convexity, SkPathPriv::kUnknown_FirstDirection },
1551 { "0 0 10 10", SkPath::kConvex_Convexity, SkPathPriv::kUnknown_FirstDirection },
1552 { "0 0 10 10 20 20 0 0 10 10", SkPath::kConcave_Convexity, SkPathPriv::kUnknown_FirstDirection },
1553 { "0 0 10 10 10 20", SkPath::kConvex_Convexity, SkPathPriv::kCW_FirstDirection },
1554 { "0 0 10 10 10 0", SkPath::kConvex_Convexity, SkPathPriv::kCCW_FirstDirection },
1555 { "0 0 10 10 10 0 0 10", SkPath::kConcave_Convexity, kDontCheckDir },
1556 { "0 0 10 0 0 10 -10 -10", SkPath::kConcave_Convexity, SkPathPriv::kCW_FirstDirection },
1557 };
1558
1559 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) {
1560 SkPath path;
1561 setFromString(&path, gRec[i].fPathStr);
1562 check_convexity(reporter, path, gRec[i].fExpectedConvexity);
1563 check_direction(reporter, path, gRec[i].fExpectedDirection);
1564 // check after setting the initial convex and direction
1565 if (kDontCheckDir != gRec[i].fExpectedDirection) {
1566 SkPath copy(path);
1567 SkPathPriv::FirstDirection dir;
1568 bool foundDir = SkPathPriv::CheapComputeFirstDirection(copy, &dir);
1569 REPORTER_ASSERT(reporter, (gRec[i].fExpectedDirection == SkPathPriv::kUnknown_FirstDirection)
1570 ^ foundDir);
1571 REPORTER_ASSERT(reporter, !foundDir || gRec[i].fExpectedDirection == dir);
1572 check_convexity(reporter, copy, gRec[i].fExpectedConvexity);
1573 }
1574 REPORTER_ASSERT(reporter, gRec[i].fExpectedConvexity == path.getConvexity());
1575 check_direction(reporter, path, gRec[i].fExpectedDirection);
1576 }
1577
1578 static const SkPoint nonFinitePts[] = {
1579 { SK_ScalarInfinity, 0 },
1580 { 0, SK_ScalarInfinity },
1581 { SK_ScalarInfinity, SK_ScalarInfinity },
1582 { SK_ScalarNegativeInfinity, 0},
1583 { 0, SK_ScalarNegativeInfinity },
1584 { SK_ScalarNegativeInfinity, SK_ScalarNegativeInfinity },
1585 { SK_ScalarNegativeInfinity, SK_ScalarInfinity },
1586 { SK_ScalarInfinity, SK_ScalarNegativeInfinity },
1587 { SK_ScalarNaN, 0 },
1588 { 0, SK_ScalarNaN },
1589 { SK_ScalarNaN, SK_ScalarNaN },
1590 };
1591
1592 const size_t nonFinitePtsCount = sizeof(nonFinitePts) / sizeof(nonFinitePts[0]);
1593
1594 static const SkPoint finitePts[] = {
1595 { SK_ScalarMax, 0 },
1596 { 0, SK_ScalarMax },
1597 { SK_ScalarMax, SK_ScalarMax },
1598 { SK_ScalarMin, 0 },
1599 { 0, SK_ScalarMin },
1600 { SK_ScalarMin, SK_ScalarMin },
1601 };
1602
1603 const size_t finitePtsCount = sizeof(finitePts) / sizeof(finitePts[0]);
1604
1605 for (int index = 0; index < (int) (13 * nonFinitePtsCount * finitePtsCount); ++index) {
1606 int i = (int) (index % nonFinitePtsCount);
1607 int f = (int) (index % finitePtsCount);
1608 int g = (int) ((f + 1) % finitePtsCount);
1609 path.reset();
1610 switch (index % 13) {
1611 case 0: path.lineTo(nonFinitePts[i]); break;
1612 case 1: path.quadTo(nonFinitePts[i], nonFinitePts[i]); break;
1613 case 2: path.quadTo(nonFinitePts[i], finitePts[f]); break;
1614 case 3: path.quadTo(finitePts[f], nonFinitePts[i]); break;
1615 case 4: path.cubicTo(nonFinitePts[i], finitePts[f], finitePts[f]); break;
1616 case 5: path.cubicTo(finitePts[f], nonFinitePts[i], finitePts[f]); break;
1617 case 6: path.cubicTo(finitePts[f], finitePts[f], nonFinitePts[i]); break;
1618 case 7: path.cubicTo(nonFinitePts[i], nonFinitePts[i], finitePts[f]); break;
1619 case 8: path.cubicTo(nonFinitePts[i], finitePts[f], nonFinitePts[i]); break;
1620 case 9: path.cubicTo(finitePts[f], nonFinitePts[i], nonFinitePts[i]); break;
1621 case 10: path.cubicTo(nonFinitePts[i], nonFinitePts[i], nonFinitePts[i]); break;
1622 case 11: path.cubicTo(nonFinitePts[i], finitePts[f], finitePts[g]); break;
1623 case 12: path.moveTo(nonFinitePts[i]); break;
1624 }
1625 check_convexity(reporter, path, SkPath::kUnknown_Convexity);
1626 }
1627
1628 for (int index = 0; index < (int) (11 * finitePtsCount); ++index) {
1629 int f = (int) (index % finitePtsCount);
1630 int g = (int) ((f + 1) % finitePtsCount);
1631 path.reset();
1632 int curveSelect = index % 11;
1633 switch (curveSelect) {
1634 case 0: path.moveTo(finitePts[f]); break;
1635 case 1: path.lineTo(finitePts[f]); break;
1636 case 2: path.quadTo(finitePts[f], finitePts[f]); break;
1637 case 3: path.quadTo(finitePts[f], finitePts[g]); break;
1638 case 4: path.quadTo(finitePts[g], finitePts[f]); break;
1639 case 5: path.cubicTo(finitePts[f], finitePts[f], finitePts[f]); break;
1640 case 6: path.cubicTo(finitePts[f], finitePts[f], finitePts[g]); break;
1641 case 7: path.cubicTo(finitePts[f], finitePts[g], finitePts[f]); break;
1642 case 8: path.cubicTo(finitePts[f], finitePts[g], finitePts[g]); break;
1643 case 9: path.cubicTo(finitePts[g], finitePts[f], finitePts[f]); break;
1644 case 10: path.cubicTo(finitePts[g], finitePts[f], finitePts[g]); break;
1645 }
1646 check_convexity(reporter, path, curveSelect == 0 ? SkPath::kConvex_Convexity
1647 : SkPath::kUnknown_Convexity);
1648 }
1649
1650 path.reset();
1651 path.moveTo(SkBits2Float(0xbe9171db), SkBits2Float(0xbd7eeb5d)); // -0.284072f, -0.0622362f
1652 path.lineTo(SkBits2Float(0xbe9171db), SkBits2Float(0xbd7eea38)); // -0.284072f, -0.0622351f
1653 path.lineTo(SkBits2Float(0xbe9171a0), SkBits2Float(0xbd7ee5a7)); // -0.28407f, -0.0622307f
1654 path.lineTo(SkBits2Float(0xbe917147), SkBits2Float(0xbd7ed886)); // -0.284067f, -0.0622182f
1655 path.lineTo(SkBits2Float(0xbe917378), SkBits2Float(0xbd7ee1a9)); // -0.284084f, -0.0622269f
1656 path.lineTo(SkBits2Float(0xbe9171db), SkBits2Float(0xbd7eeb5d)); // -0.284072f, -0.0622362f
1657 path.close();
1658 check_convexity(reporter, path, SkPath::kConcave_Convexity);
1659
1660}
1661
1662static void test_isLine(skiatest::Reporter* reporter) {
1663 SkPath path;
1664 SkPoint pts[2];
1665 const SkScalar value = SkIntToScalar(5);
1666
1667 REPORTER_ASSERT(reporter, !path.isLine(nullptr));
1668
1669 // set some non-zero values
1670 pts[0].set(value, value);
1671 pts[1].set(value, value);
1672 REPORTER_ASSERT(reporter, !path.isLine(pts));
1673 // check that pts was untouched
1674 REPORTER_ASSERT(reporter, pts[0].equals(value, value));
1675 REPORTER_ASSERT(reporter, pts[1].equals(value, value));
1676
1677 const SkScalar moveX = SkIntToScalar(1);
1678 const SkScalar moveY = SkIntToScalar(2);
1679 REPORTER_ASSERT(reporter, value != moveX && value != moveY);
1680
1681 path.moveTo(moveX, moveY);
1682 REPORTER_ASSERT(reporter, !path.isLine(nullptr));
1683 REPORTER_ASSERT(reporter, !path.isLine(pts));
1684 // check that pts was untouched
1685 REPORTER_ASSERT(reporter, pts[0].equals(value, value));
1686 REPORTER_ASSERT(reporter, pts[1].equals(value, value));
1687
1688 const SkScalar lineX = SkIntToScalar(2);
1689 const SkScalar lineY = SkIntToScalar(2);
1690 REPORTER_ASSERT(reporter, value != lineX && value != lineY);
1691
1692 path.lineTo(lineX, lineY);
1693 REPORTER_ASSERT(reporter, path.isLine(nullptr));
1694
1695 REPORTER_ASSERT(reporter, !pts[0].equals(moveX, moveY));
1696 REPORTER_ASSERT(reporter, !pts[1].equals(lineX, lineY));
1697 REPORTER_ASSERT(reporter, path.isLine(pts));
1698 REPORTER_ASSERT(reporter, pts[0].equals(moveX, moveY));
1699 REPORTER_ASSERT(reporter, pts[1].equals(lineX, lineY));
1700
1701 path.lineTo(0, 0); // too many points/verbs
1702 REPORTER_ASSERT(reporter, !path.isLine(nullptr));
1703 REPORTER_ASSERT(reporter, !path.isLine(pts));
1704 REPORTER_ASSERT(reporter, pts[0].equals(moveX, moveY));
1705 REPORTER_ASSERT(reporter, pts[1].equals(lineX, lineY));
1706
1707 path.reset();
1708 path.quadTo(1, 1, 2, 2);
1709 REPORTER_ASSERT(reporter, !path.isLine(nullptr));
1710}
1711
1712static void test_conservativelyContains(skiatest::Reporter* reporter) {
1713 SkPath path;
1714
1715 // kBaseRect is used to construct most our test paths: a rect, a circle, and a round-rect.
1716 static const SkRect kBaseRect = SkRect::MakeWH(SkIntToScalar(100), SkIntToScalar(100));
1717
1718 // A circle that bounds kBaseRect (with a significant amount of slop)
1719 SkScalar circleR = SkMaxScalar(kBaseRect.width(), kBaseRect.height());
1720 circleR *= 1.75f / 2;
1721 static const SkPoint kCircleC = {kBaseRect.centerX(), kBaseRect.centerY()};
1722
1723 // round-rect radii
1724 static const SkScalar kRRRadii[] = {SkIntToScalar(5), SkIntToScalar(3)};
1725
1726 static const struct SUPPRESS_VISIBILITY_WARNING {
1727 SkRect fQueryRect;
1728 bool fInRect;
1729 bool fInCircle;
1730 bool fInRR;
1731 bool fInCubicRR;
1732 } kQueries[] = {
1733 {kBaseRect, true, true, false, false},
1734
1735 // rect well inside of kBaseRect
1736 {SkRect::MakeLTRB(kBaseRect.fLeft + 0.25f*kBaseRect.width(),
1737 kBaseRect.fTop + 0.25f*kBaseRect.height(),
1738 kBaseRect.fRight - 0.25f*kBaseRect.width(),
1739 kBaseRect.fBottom - 0.25f*kBaseRect.height()),
1740 true, true, true, true},
1741
1742 // rects with edges off by one from kBaseRect's edges
1743 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.fTop,
1744 kBaseRect.width(), kBaseRect.height() + 1),
1745 false, true, false, false},
1746 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.fTop,
1747 kBaseRect.width() + 1, kBaseRect.height()),
1748 false, true, false, false},
1749 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.fTop,
1750 kBaseRect.width() + 1, kBaseRect.height() + 1),
1751 false, true, false, false},
1752 {SkRect::MakeXYWH(kBaseRect.fLeft - 1, kBaseRect.fTop,
1753 kBaseRect.width(), kBaseRect.height()),
1754 false, true, false, false},
1755 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.fTop - 1,
1756 kBaseRect.width(), kBaseRect.height()),
1757 false, true, false, false},
1758 {SkRect::MakeXYWH(kBaseRect.fLeft - 1, kBaseRect.fTop,
1759 kBaseRect.width() + 2, kBaseRect.height()),
1760 false, true, false, false},
1761 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.fTop - 1,
1762 kBaseRect.width() + 2, kBaseRect.height()),
1763 false, true, false, false},
1764
1765 // zero-w/h rects at each corner of kBaseRect
1766 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.fTop, 0, 0), true, true, false, false},
1767 {SkRect::MakeXYWH(kBaseRect.fRight, kBaseRect.fTop, 0, 0), true, true, false, true},
1768 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.fBottom, 0, 0), true, true, false, true},
1769 {SkRect::MakeXYWH(kBaseRect.fRight, kBaseRect.fBottom, 0, 0), true, true, false, true},
1770
1771 // far away rect
1772 {SkRect::MakeXYWH(10 * kBaseRect.fRight, 10 * kBaseRect.fBottom,
1773 SkIntToScalar(10), SkIntToScalar(10)),
1774 false, false, false, false},
1775
1776 // very large rect containing kBaseRect
1777 {SkRect::MakeXYWH(kBaseRect.fLeft - 5 * kBaseRect.width(),
1778 kBaseRect.fTop - 5 * kBaseRect.height(),
1779 11 * kBaseRect.width(), 11 * kBaseRect.height()),
1780 false, false, false, false},
1781
1782 // skinny rect that spans same y-range as kBaseRect
1783 {SkRect::MakeXYWH(kBaseRect.centerX(), kBaseRect.fTop,
1784 SkIntToScalar(1), kBaseRect.height()),
1785 true, true, true, true},
1786
1787 // short rect that spans same x-range as kBaseRect
1788 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.centerY(), kBaseRect.width(), SkScalar(1)),
1789 true, true, true, true},
1790
1791 // skinny rect that spans slightly larger y-range than kBaseRect
1792 {SkRect::MakeXYWH(kBaseRect.centerX(), kBaseRect.fTop,
1793 SkIntToScalar(1), kBaseRect.height() + 1),
1794 false, true, false, false},
1795
1796 // short rect that spans slightly larger x-range than kBaseRect
1797 {SkRect::MakeXYWH(kBaseRect.fLeft, kBaseRect.centerY(),
1798 kBaseRect.width() + 1, SkScalar(1)),
1799 false, true, false, false},
1800 };
1801
1802 for (int inv = 0; inv < 4; ++inv) {
1803 for (size_t q = 0; q < SK_ARRAY_COUNT(kQueries); ++q) {
1804 SkRect qRect = kQueries[q].fQueryRect;
1805 if (inv & 0x1) {
1806 SkTSwap(qRect.fLeft, qRect.fRight);
1807 }
1808 if (inv & 0x2) {
1809 SkTSwap(qRect.fTop, qRect.fBottom);
1810 }
1811 for (int d = 0; d < 2; ++d) {
1812 SkPath::Direction dir = d ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
1813 path.reset();
1814 path.addRect(kBaseRect, dir);
1815 REPORTER_ASSERT(reporter, kQueries[q].fInRect ==
1816 path.conservativelyContainsRect(qRect));
1817
1818 path.reset();
1819 path.addCircle(kCircleC.fX, kCircleC.fY, circleR, dir);
1820 REPORTER_ASSERT(reporter, kQueries[q].fInCircle ==
1821 path.conservativelyContainsRect(qRect));
1822
1823 path.reset();
1824 path.addRoundRect(kBaseRect, kRRRadii[0], kRRRadii[1], dir);
1825 REPORTER_ASSERT(reporter, kQueries[q].fInRR ==
1826 path.conservativelyContainsRect(qRect));
1827
1828 path.reset();
1829 path.moveTo(kBaseRect.fLeft + kRRRadii[0], kBaseRect.fTop);
1830 path.cubicTo(kBaseRect.fLeft + kRRRadii[0] / 2, kBaseRect.fTop,
1831 kBaseRect.fLeft, kBaseRect.fTop + kRRRadii[1] / 2,
1832 kBaseRect.fLeft, kBaseRect.fTop + kRRRadii[1]);
1833 path.lineTo(kBaseRect.fLeft, kBaseRect.fBottom);
1834 path.lineTo(kBaseRect.fRight, kBaseRect.fBottom);
1835 path.lineTo(kBaseRect.fRight, kBaseRect.fTop);
1836 path.close();
1837 REPORTER_ASSERT(reporter, kQueries[q].fInCubicRR ==
1838 path.conservativelyContainsRect(qRect));
1839
1840 }
1841 // Slightly non-convex shape, shouldn't contain any rects.
1842 path.reset();
1843 path.moveTo(0, 0);
1844 path.lineTo(SkIntToScalar(50), 0.05f);
1845 path.lineTo(SkIntToScalar(100), 0);
1846 path.lineTo(SkIntToScalar(100), SkIntToScalar(100));
1847 path.lineTo(0, SkIntToScalar(100));
1848 path.close();
1849 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(qRect));
1850 }
1851 }
1852
1853 // make sure a minimal convex shape works, a right tri with edges along pos x and y axes.
1854 path.reset();
1855 path.moveTo(0, 0);
1856 path.lineTo(SkIntToScalar(100), 0);
1857 path.lineTo(0, SkIntToScalar(100));
1858
1859 // inside, on along top edge
1860 REPORTER_ASSERT(reporter, path.conservativelyContainsRect(SkRect::MakeXYWH(SkIntToScalar(50), 0,
1861 SkIntToScalar(10),
1862 SkIntToScalar(10))));
1863 // above
1864 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(
1865 SkRect::MakeXYWH(SkIntToScalar(50),
1866 SkIntToScalar(-10),
1867 SkIntToScalar(10),
1868 SkIntToScalar(10))));
1869 // to the left
1870 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(SkRect::MakeXYWH(SkIntToScalar(-10),
1871 SkIntToScalar(5),
1872 SkIntToScalar(5),
1873 SkIntToScalar(5))));
1874
1875 // outside the diagonal edge
1876 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(SkRect::MakeXYWH(SkIntToScalar(10),
1877 SkIntToScalar(200),
1878 SkIntToScalar(20),
1879 SkIntToScalar(5))));
1880
1881
1882 // Test that multiple move commands do not cause asserts.
1883
1884 // At the time of writing, this would not modify cached convexity. This caused an assert while
1885 // checking conservative containment again. https://bug.skia.org/1460
1886 path.moveTo(SkIntToScalar(100), SkIntToScalar(100));
1887#if 0
1888 REPORTER_ASSERT(reporter, path.conservativelyContainsRect(SkRect::MakeXYWH(SkIntToScalar(50), 0,
1889 SkIntToScalar(10),
1890 SkIntToScalar(10))));
1891#endif
1892
1893 // Same as above path and first test but with an extra moveTo.
1894 path.reset();
1895 path.moveTo(100, 100);
1896 path.moveTo(0, 0);
1897 path.lineTo(SkIntToScalar(100), 0);
1898 path.lineTo(0, SkIntToScalar(100));
1899
1900 REPORTER_ASSERT(reporter, path.conservativelyContainsRect(SkRect::MakeXYWH(SkIntToScalar(50), 0,
1901 SkIntToScalar(10),
1902 SkIntToScalar(10))));
1903
1904 // Same as above path and first test but with the extra moveTo making a degenerate sub-path
1905 // following the non-empty sub-path. Verifies that this does not trigger assertions.
1906 path.reset();
1907 path.moveTo(0, 0);
1908 path.lineTo(SkIntToScalar(100), 0);
1909 path.lineTo(0, SkIntToScalar(100));
1910 path.moveTo(100, 100);
1911
1912 REPORTER_ASSERT(reporter, path.conservativelyContainsRect(SkRect::MakeXYWH(SkIntToScalar(50), 0,
1913 SkIntToScalar(10),
1914 SkIntToScalar(10))));
1915
1916 // Test that multiple move commands do not cause asserts and that the function
1917 // is not confused by the multiple moves.
1918 path.reset();
1919 path.moveTo(0, 0);
1920 path.lineTo(SkIntToScalar(100), 0);
1921 path.lineTo(0, SkIntToScalar(100));
1922 path.moveTo(0, SkIntToScalar(200));
1923 path.lineTo(SkIntToScalar(100), SkIntToScalar(200));
1924 path.lineTo(0, SkIntToScalar(300));
1925
1926 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(
1927 SkRect::MakeXYWH(SkIntToScalar(50), 0,
1928 SkIntToScalar(10),
1929 SkIntToScalar(10))));
1930
1931 path.reset();
1932 path.lineTo(100, 100);
1933 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(SkRect::MakeXYWH(0, 0, 1, 1)));
1934
1935 // An empty path should not contain any rectangle. It's questionable whether an empty path
1936 // contains an empty rectangle. However, since it is a conservative test it is ok to
1937 // return false.
1938 path.reset();
1939 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(SkRect::MakeWH(1,1)));
1940 REPORTER_ASSERT(reporter, !path.conservativelyContainsRect(SkRect::MakeWH(0,0)));
1941}
1942
1943static void test_isRect_open_close(skiatest::Reporter* reporter) {
1944 SkPath path;
1945 bool isClosed;
1946
1947 path.moveTo(0, 0); path.lineTo(1, 0); path.lineTo(1, 1); path.lineTo(0, 1);
1948 path.close();
1949
1950 REPORTER_ASSERT(reporter, path.isRect(nullptr, &isClosed, nullptr));
1951 REPORTER_ASSERT(reporter, isClosed);
1952}
1953
1954// Simple isRect test is inline TestPath, below.
1955// test_isRect provides more extensive testing.
1956static void test_isRect(skiatest::Reporter* reporter) {
1957 test_isRect_open_close(reporter);
1958
1959 // passing tests (all moveTo / lineTo...
1960 SkPoint r1[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}};
1961 SkPoint r2[] = {{1, 0}, {1, 1}, {0, 1}, {0, 0}};
1962 SkPoint r3[] = {{1, 1}, {0, 1}, {0, 0}, {1, 0}};
1963 SkPoint r4[] = {{0, 1}, {0, 0}, {1, 0}, {1, 1}};
1964 SkPoint r5[] = {{0, 0}, {0, 1}, {1, 1}, {1, 0}};
1965 SkPoint r6[] = {{0, 1}, {1, 1}, {1, 0}, {0, 0}};
1966 SkPoint r7[] = {{1, 1}, {1, 0}, {0, 0}, {0, 1}};
1967 SkPoint r8[] = {{1, 0}, {0, 0}, {0, 1}, {1, 1}};
1968 SkPoint r9[] = {{0, 1}, {1, 1}, {1, 0}, {0, 0}};
1969 SkPoint ra[] = {{0, 0}, {0, .5f}, {0, 1}, {.5f, 1}, {1, 1}, {1, .5f}, {1, 0}, {.5f, 0}};
1970 SkPoint rb[] = {{0, 0}, {.5f, 0}, {1, 0}, {1, .5f}, {1, 1}, {.5f, 1}, {0, 1}, {0, .5f}};
1971 SkPoint rc[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0, 0}};
1972 SkPoint rd[] = {{0, 0}, {0, 1}, {1, 1}, {1, 0}, {0, 0}};
1973 SkPoint re[] = {{0, 0}, {1, 0}, {1, 0}, {1, 1}, {0, 1}};
1974 SkPoint rf[] = {{1, 0}, {8, 0}, {8, 8}, {0, 8}, {0, 0}};
1975
1976 // failing tests
1977 SkPoint f1[] = {{0, 0}, {1, 0}, {1, 1}}; // too few points
1978 SkPoint f2[] = {{0, 0}, {1, 1}, {0, 1}, {1, 0}}; // diagonal
1979 SkPoint f3[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0, 0}, {1, 0}}; // wraps
1980 SkPoint f4[] = {{0, 0}, {1, 0}, {0, 0}, {1, 0}, {1, 1}, {0, 1}}; // backs up
1981 SkPoint f5[] = {{0, 0}, {1, 0}, {1, 1}, {2, 0}}; // end overshoots
1982 SkPoint f6[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0, 2}}; // end overshoots
1983 SkPoint f7[] = {{0, 0}, {1, 0}, {1, 1}, {0, 2}}; // end overshoots
1984 SkPoint f8[] = {{0, 0}, {1, 0}, {1, 1}, {1, 0}}; // 'L'
1985 SkPoint f9[] = {{1, 0}, {8, 0}, {8, 8}, {0, 8}, {0, 0}, {2, 0}}; // overlaps
1986 SkPoint fa[] = {{1, 0}, {8, 0}, {8, 8}, {0, 8}, {0, -1}, {1, -1}}; // non colinear gap
1987 SkPoint fb[] = {{1, 0}, {8, 0}, {8, 8}, {0, 8}, {0, 1}}; // falls short
1988
1989 // no close, but we should detect them as fillably the same as a rect
1990 SkPoint c1[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}};
1991 SkPoint c2[] = {{0, 0}, {1, 0}, {1, 2}, {0, 2}, {0, 1}};
1992 SkPoint c3[] = {{0, 0}, {1, 0}, {1, 2}, {0, 2}, {0, 1}, {0, 0}}; // hit the start
1993
1994 // like c2, but we double-back on ourselves
1995 SkPoint d1[] = {{0, 0}, {1, 0}, {1, 2}, {0, 2}, {0, 1}, {0, 2}};
1996 // like c2, but we overshoot the start point
1997 SkPoint d2[] = {{0, 0}, {1, 0}, {1, 2}, {0, 2}, {0, -1}};
1998 SkPoint d3[] = {{0, 0}, {1, 0}, {1, 2}, {0, 2}, {0, -1}, {0, 0}};
1999
2000 struct IsRectTest {
2001 SkPoint *fPoints;
2002 int fPointCount;
2003 bool fClose;
2004 bool fIsRect;
2005 } tests[] = {
2006 { r1, SK_ARRAY_COUNT(r1), true, true },
2007 { r2, SK_ARRAY_COUNT(r2), true, true },
2008 { r3, SK_ARRAY_COUNT(r3), true, true },
2009 { r4, SK_ARRAY_COUNT(r4), true, true },
2010 { r5, SK_ARRAY_COUNT(r5), true, true },
2011 { r6, SK_ARRAY_COUNT(r6), true, true },
2012 { r7, SK_ARRAY_COUNT(r7), true, true },
2013 { r8, SK_ARRAY_COUNT(r8), true, true },
2014 { r9, SK_ARRAY_COUNT(r9), true, true },
2015 { ra, SK_ARRAY_COUNT(ra), true, true },
2016 { rb, SK_ARRAY_COUNT(rb), true, true },
2017 { rc, SK_ARRAY_COUNT(rc), true, true },
2018 { rd, SK_ARRAY_COUNT(rd), true, true },
2019 { re, SK_ARRAY_COUNT(re), true, true },
2020 { rf, SK_ARRAY_COUNT(rf), true, true },
2021
2022 { f1, SK_ARRAY_COUNT(f1), true, false },
2023 { f2, SK_ARRAY_COUNT(f2), true, false },
2024 { f3, SK_ARRAY_COUNT(f3), true, false },
2025 { f4, SK_ARRAY_COUNT(f4), true, false },
2026 { f5, SK_ARRAY_COUNT(f5), true, false },
2027 { f6, SK_ARRAY_COUNT(f6), true, false },
2028 { f7, SK_ARRAY_COUNT(f7), true, false },
2029 { f8, SK_ARRAY_COUNT(f8), true, false },
2030 { f9, SK_ARRAY_COUNT(f9), true, false },
2031 { fa, SK_ARRAY_COUNT(fa), true, false },
2032 { fb, SK_ARRAY_COUNT(fb), true, false },
2033
2034 { c1, SK_ARRAY_COUNT(c1), false, true },
2035 { c2, SK_ARRAY_COUNT(c2), false, true },
2036 { c3, SK_ARRAY_COUNT(c3), false, true },
2037
2038 { d1, SK_ARRAY_COUNT(d1), false, false },
2039 { d2, SK_ARRAY_COUNT(d2), false, false },
2040 { d3, SK_ARRAY_COUNT(d3), false, false },
2041 };
2042
2043 const size_t testCount = SK_ARRAY_COUNT(tests);
2044 int index;
2045 for (size_t testIndex = 0; testIndex < testCount; ++testIndex) {
2046 SkPath path;
2047 path.moveTo(tests[testIndex].fPoints[0].fX, tests[testIndex].fPoints[0].fY);
2048 for (index = 1; index < tests[testIndex].fPointCount; ++index) {
2049 path.lineTo(tests[testIndex].fPoints[index].fX, tests[testIndex].fPoints[index].fY);
2050 }
2051 if (tests[testIndex].fClose) {
2052 path.close();
2053 }
2054 REPORTER_ASSERT(reporter, tests[testIndex].fIsRect == path.isRect(nullptr));
2055
2056 if (tests[testIndex].fIsRect) {
2057 SkRect computed, expected;
2058 bool isClosed;
2059 SkPath::Direction direction;
2060 SkPathPriv::FirstDirection cheapDirection;
2061 expected.set(tests[testIndex].fPoints, tests[testIndex].fPointCount);
2062 REPORTER_ASSERT(reporter, SkPathPriv::CheapComputeFirstDirection(path, &cheapDirection));
2063 REPORTER_ASSERT(reporter, path.isRect(&computed, &isClosed, &direction));
2064 REPORTER_ASSERT(reporter, expected == computed);
2065 REPORTER_ASSERT(reporter, isClosed == tests[testIndex].fClose);
2066 REPORTER_ASSERT(reporter, SkPathPriv::AsFirstDirection(direction) == cheapDirection);
2067 } else {
2068 SkRect computed;
2069 computed.set(123, 456, 789, 1011);
2070 bool isClosed = (bool)-1;
2071 SkPath::Direction direction = (SkPath::Direction) - 1;
2072 REPORTER_ASSERT(reporter, !path.isRect(&computed, &isClosed, &direction));
2073 REPORTER_ASSERT(reporter, computed.fLeft == 123 && computed.fTop == 456);
2074 REPORTER_ASSERT(reporter, computed.fRight == 789 && computed.fBottom == 1011);
2075 REPORTER_ASSERT(reporter, isClosed == (bool) -1);
2076 REPORTER_ASSERT(reporter, direction == (SkPath::Direction) -1);
2077 }
2078 }
2079
2080 // fail, close then line
2081 SkPath path1;
2082 path1.moveTo(r1[0].fX, r1[0].fY);
2083 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2084 path1.lineTo(r1[index].fX, r1[index].fY);
2085 }
2086 path1.close();
2087 path1.lineTo(1, 0);
2088 REPORTER_ASSERT(reporter, !path1.isRect(nullptr));
2089
2090 // fail, move in the middle
2091 path1.reset();
2092 path1.moveTo(r1[0].fX, r1[0].fY);
2093 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2094 if (index == 2) {
2095 path1.moveTo(1, .5f);
2096 }
2097 path1.lineTo(r1[index].fX, r1[index].fY);
2098 }
2099 path1.close();
2100 REPORTER_ASSERT(reporter, !path1.isRect(nullptr));
2101
2102 // fail, move on the edge
2103 path1.reset();
2104 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2105 path1.moveTo(r1[index - 1].fX, r1[index - 1].fY);
2106 path1.lineTo(r1[index].fX, r1[index].fY);
2107 }
2108 path1.close();
2109 REPORTER_ASSERT(reporter, !path1.isRect(nullptr));
2110
2111 // fail, quad
2112 path1.reset();
2113 path1.moveTo(r1[0].fX, r1[0].fY);
2114 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2115 if (index == 2) {
2116 path1.quadTo(1, .5f, 1, .5f);
2117 }
2118 path1.lineTo(r1[index].fX, r1[index].fY);
2119 }
2120 path1.close();
2121 REPORTER_ASSERT(reporter, !path1.isRect(nullptr));
2122
2123 // fail, cubic
2124 path1.reset();
2125 path1.moveTo(r1[0].fX, r1[0].fY);
2126 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2127 if (index == 2) {
2128 path1.cubicTo(1, .5f, 1, .5f, 1, .5f);
2129 }
2130 path1.lineTo(r1[index].fX, r1[index].fY);
2131 }
2132 path1.close();
2133 REPORTER_ASSERT(reporter, !path1.isRect(nullptr));
2134}
2135
2136static void check_simple_closed_rect(skiatest::Reporter* reporter, const SkPath& path,
2137 const SkRect& rect, SkPath::Direction dir, unsigned start) {
2138 SkRect r = SkRect::MakeEmpty();
2139 SkPath::Direction d = SkPath::kCCW_Direction;
2140 unsigned s = ~0U;
2141
2142 REPORTER_ASSERT(reporter, SkPathPriv::IsSimpleClosedRect(path, &r, &d, &s));
2143 REPORTER_ASSERT(reporter, r == rect);
2144 REPORTER_ASSERT(reporter, d == dir);
2145 REPORTER_ASSERT(reporter, s == start);
2146}
2147
2148static void test_is_simple_closed_rect(skiatest::Reporter* reporter) {
2149 SkRect r = SkRect::MakeEmpty();
2150 SkPath::Direction d = SkPath::kCCW_Direction;
2151 unsigned s = ~0U;
2152
2153 const SkRect testRect = SkRect::MakeXYWH(10, 10, 50, 70);
2154 const SkRect emptyRect = SkRect::MakeEmpty();
2155 SkPath path;
2156 for (int start = 0; start < 4; ++start) {
2157 for (auto dir : {SkPath::kCCW_Direction, SkPath::kCW_Direction}) {
2158 SkPath path;
2159 path.addRect(testRect, dir, start);
2160 check_simple_closed_rect(reporter, path, testRect, dir, start);
2161 path.close();
2162 check_simple_closed_rect(reporter, path, testRect, dir, start);
2163 SkPath path2 = path;
2164 path2.lineTo(10, 10);
2165 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path2, &r, &d, &s));
2166 path2 = path;
2167 path2.moveTo(10, 10);
2168 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path2, &r, &d, &s));
2169 path2 = path;
2170 path2.addRect(testRect, dir, start);
2171 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path2, &r, &d, &s));
2172 // Make the path by hand, manually closing it.
2173 path2.reset();
2174 SkPath::RawIter iter(path);
2175 SkPath::Verb v;
2176 SkPoint verbPts[4];
2177 SkPoint firstPt = {0.f, 0.f};
2178 while ((v = iter.next(verbPts)) != SkPath::kDone_Verb) {
2179 switch(v) {
2180 case SkPath::kMove_Verb:
2181 firstPt = verbPts[0];
2182 path2.moveTo(verbPts[0]);
2183 break;
2184 case SkPath::kLine_Verb:
2185 path2.lineTo(verbPts[1]);
2186 break;
2187 default:
2188 break;
2189 }
2190 }
2191 // We haven't closed it yet...
2192 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path2, &r, &d, &s));
2193 // ... now we do and test again.
2194 path2.lineTo(firstPt);
2195 check_simple_closed_rect(reporter, path2, testRect, dir, start);
2196 // A redundant close shouldn't cause a failure.
2197 path2.close();
2198 check_simple_closed_rect(reporter, path2, testRect, dir, start);
2199 // Degenerate point and line rects are not allowed
2200 path2.reset();
2201 path2.addRect(emptyRect, dir, start);
2202 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path2, &r, &d, &s));
2203 SkRect degenRect = testRect;
2204 degenRect.fLeft = degenRect.fRight;
2205 path2.reset();
2206 path2.addRect(degenRect, dir, start);
2207 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path2, &r, &d, &s));
2208 degenRect = testRect;
2209 degenRect.fTop = degenRect.fBottom;
2210 path2.reset();
2211 path2.addRect(degenRect, dir, start);
2212 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path2, &r, &d, &s));
2213 // An inverted rect makes a rect path, but changes the winding dir and start point.
2214 SkPath::Direction swapDir = (dir == SkPath::kCW_Direction)
2215 ? SkPath::kCCW_Direction
2216 : SkPath::kCW_Direction;
2217 static constexpr unsigned kXSwapStarts[] = { 1, 0, 3, 2 };
2218 static constexpr unsigned kYSwapStarts[] = { 3, 2, 1, 0 };
2219 SkRect swapRect = testRect;
2220 SkTSwap(swapRect.fLeft, swapRect.fRight);
2221 path2.reset();
2222 path2.addRect(swapRect, dir, start);
2223 check_simple_closed_rect(reporter, path2, testRect, swapDir, kXSwapStarts[start]);
2224 swapRect = testRect;
2225 SkTSwap(swapRect.fTop, swapRect.fBottom);
2226 path2.reset();
2227 path2.addRect(swapRect, dir, start);
2228 check_simple_closed_rect(reporter, path2, testRect, swapDir, kYSwapStarts[start]);
2229 }
2230 }
2231 // down, up, left, close
2232 path.reset();
2233 path.moveTo(1, 1);
2234 path.lineTo(1, 2);
2235 path.lineTo(1, 1);
2236 path.lineTo(0, 1);
2237 SkRect rect;
2238 SkPath::Direction dir;
2239 unsigned start;
2240 path.close();
2241 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path, &rect, &dir, &start));
2242 // right, left, up, close
2243 path.reset();
2244 path.moveTo(1, 1);
2245 path.lineTo(2, 1);
2246 path.lineTo(1, 1);
2247 path.lineTo(1, 0);
2248 path.close();
2249 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path, &rect, &dir, &start));
2250 // parallelogram with horizontal edges
2251 path.reset();
2252 path.moveTo(1, 0);
2253 path.lineTo(3, 0);
2254 path.lineTo(2, 1);
2255 path.lineTo(0, 1);
2256 path.close();
2257 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path, &rect, &dir, &start));
2258 // parallelogram with vertical edges
2259 path.reset();
2260 path.moveTo(0, 1);
2261 path.lineTo(0, 3);
2262 path.lineTo(1, 2);
2263 path.lineTo(1, 0);
2264 path.close();
2265 REPORTER_ASSERT(reporter, !SkPathPriv::IsSimpleClosedRect(path, &rect, &dir, &start));
2266
2267}
2268
2269static void test_isNestedFillRects(skiatest::Reporter* reporter) {
2270 // passing tests (all moveTo / lineTo...
2271 SkPoint r1[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}}; // CW
2272 SkPoint r2[] = {{1, 0}, {1, 1}, {0, 1}, {0, 0}};
2273 SkPoint r3[] = {{1, 1}, {0, 1}, {0, 0}, {1, 0}};
2274 SkPoint r4[] = {{0, 1}, {0, 0}, {1, 0}, {1, 1}};
2275 SkPoint r5[] = {{0, 0}, {0, 1}, {1, 1}, {1, 0}}; // CCW
2276 SkPoint r6[] = {{0, 1}, {1, 1}, {1, 0}, {0, 0}};
2277 SkPoint r7[] = {{1, 1}, {1, 0}, {0, 0}, {0, 1}};
2278 SkPoint r8[] = {{1, 0}, {0, 0}, {0, 1}, {1, 1}};
2279 SkPoint r9[] = {{0, 1}, {1, 1}, {1, 0}, {0, 0}};
2280 SkPoint ra[] = {{0, 0}, {0, .5f}, {0, 1}, {.5f, 1}, {1, 1}, {1, .5f}, {1, 0}, {.5f, 0}}; // CCW
2281 SkPoint rb[] = {{0, 0}, {.5f, 0}, {1, 0}, {1, .5f}, {1, 1}, {.5f, 1}, {0, 1}, {0, .5f}}; // CW
2282 SkPoint rc[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0, 0}}; // CW
2283 SkPoint rd[] = {{0, 0}, {0, 1}, {1, 1}, {1, 0}, {0, 0}}; // CCW
2284 SkPoint re[] = {{0, 0}, {1, 0}, {1, 0}, {1, 1}, {0, 1}}; // CW
2285
2286 // failing tests
2287 SkPoint f1[] = {{0, 0}, {1, 0}, {1, 1}}; // too few points
2288 SkPoint f2[] = {{0, 0}, {1, 1}, {0, 1}, {1, 0}}; // diagonal
2289 SkPoint f3[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0, 0}, {1, 0}}; // wraps
2290 SkPoint f4[] = {{0, 0}, {1, 0}, {0, 0}, {1, 0}, {1, 1}, {0, 1}}; // backs up
2291 SkPoint f5[] = {{0, 0}, {1, 0}, {1, 1}, {2, 0}}; // end overshoots
2292 SkPoint f6[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0, 2}}; // end overshoots
2293 SkPoint f7[] = {{0, 0}, {1, 0}, {1, 1}, {0, 2}}; // end overshoots
2294 SkPoint f8[] = {{0, 0}, {1, 0}, {1, 1}, {1, 0}}; // 'L'
2295
2296 // success, no close is OK
2297 SkPoint c1[] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}}; // close doesn't match
2298 SkPoint c2[] = {{0, 0}, {1, 0}, {1, 2}, {0, 2}, {0, 1}}; // ditto
2299
2300 struct IsNestedRectTest {
2301 SkPoint *fPoints;
2302 int fPointCount;
2303 SkPathPriv::FirstDirection fDirection;
2304 bool fClose;
2305 bool fIsNestedRect; // nests with path.addRect(-1, -1, 2, 2);
2306 } tests[] = {
2307 { r1, SK_ARRAY_COUNT(r1), SkPathPriv::kCW_FirstDirection , true, true },
2308 { r2, SK_ARRAY_COUNT(r2), SkPathPriv::kCW_FirstDirection , true, true },
2309 { r3, SK_ARRAY_COUNT(r3), SkPathPriv::kCW_FirstDirection , true, true },
2310 { r4, SK_ARRAY_COUNT(r4), SkPathPriv::kCW_FirstDirection , true, true },
2311 { r5, SK_ARRAY_COUNT(r5), SkPathPriv::kCCW_FirstDirection, true, true },
2312 { r6, SK_ARRAY_COUNT(r6), SkPathPriv::kCCW_FirstDirection, true, true },
2313 { r7, SK_ARRAY_COUNT(r7), SkPathPriv::kCCW_FirstDirection, true, true },
2314 { r8, SK_ARRAY_COUNT(r8), SkPathPriv::kCCW_FirstDirection, true, true },
2315 { r9, SK_ARRAY_COUNT(r9), SkPathPriv::kCCW_FirstDirection, true, true },
2316 { ra, SK_ARRAY_COUNT(ra), SkPathPriv::kCCW_FirstDirection, true, true },
2317 { rb, SK_ARRAY_COUNT(rb), SkPathPriv::kCW_FirstDirection, true, true },
2318 { rc, SK_ARRAY_COUNT(rc), SkPathPriv::kCW_FirstDirection, true, true },
2319 { rd, SK_ARRAY_COUNT(rd), SkPathPriv::kCCW_FirstDirection, true, true },
2320 { re, SK_ARRAY_COUNT(re), SkPathPriv::kCW_FirstDirection, true, true },
2321
2322 { f1, SK_ARRAY_COUNT(f1), SkPathPriv::kUnknown_FirstDirection, true, false },
2323 { f2, SK_ARRAY_COUNT(f2), SkPathPriv::kUnknown_FirstDirection, true, false },
2324 { f3, SK_ARRAY_COUNT(f3), SkPathPriv::kUnknown_FirstDirection, true, false },
2325 { f4, SK_ARRAY_COUNT(f4), SkPathPriv::kUnknown_FirstDirection, true, false },
2326 { f5, SK_ARRAY_COUNT(f5), SkPathPriv::kUnknown_FirstDirection, true, false },
2327 { f6, SK_ARRAY_COUNT(f6), SkPathPriv::kUnknown_FirstDirection, true, false },
2328 { f7, SK_ARRAY_COUNT(f7), SkPathPriv::kUnknown_FirstDirection, true, false },
2329 { f8, SK_ARRAY_COUNT(f8), SkPathPriv::kUnknown_FirstDirection, true, false },
2330
2331 { c1, SK_ARRAY_COUNT(c1), SkPathPriv::kCW_FirstDirection, false, true },
2332 { c2, SK_ARRAY_COUNT(c2), SkPathPriv::kCW_FirstDirection, false, true },
2333 };
2334
2335 const size_t testCount = SK_ARRAY_COUNT(tests);
2336 int index;
2337 for (int rectFirst = 0; rectFirst <= 1; ++rectFirst) {
2338 for (size_t testIndex = 0; testIndex < testCount; ++testIndex) {
2339 SkPath path;
2340 if (rectFirst) {
2341 path.addRect(-1, -1, 2, 2, SkPath::kCW_Direction);
2342 }
2343 path.moveTo(tests[testIndex].fPoints[0].fX, tests[testIndex].fPoints[0].fY);
2344 for (index = 1; index < tests[testIndex].fPointCount; ++index) {
2345 path.lineTo(tests[testIndex].fPoints[index].fX, tests[testIndex].fPoints[index].fY);
2346 }
2347 if (tests[testIndex].fClose) {
2348 path.close();
2349 }
2350 if (!rectFirst) {
2351 path.addRect(-1, -1, 2, 2, SkPath::kCCW_Direction);
2352 }
2353 REPORTER_ASSERT(reporter,
2354 tests[testIndex].fIsNestedRect == path.isNestedFillRects(nullptr));
2355 if (tests[testIndex].fIsNestedRect) {
2356 SkRect expected[2], computed[2];
2357 SkPathPriv::FirstDirection expectedDirs[2];
2358 SkPath::Direction computedDirs[2];
2359 SkRect testBounds;
2360 testBounds.set(tests[testIndex].fPoints, tests[testIndex].fPointCount);
2361 expected[0] = SkRect::MakeLTRB(-1, -1, 2, 2);
2362 expected[1] = testBounds;
2363 if (rectFirst) {
2364 expectedDirs[0] = SkPathPriv::kCW_FirstDirection;
2365 } else {
2366 expectedDirs[0] = SkPathPriv::kCCW_FirstDirection;
2367 }
2368 expectedDirs[1] = tests[testIndex].fDirection;
2369 REPORTER_ASSERT(reporter, path.isNestedFillRects(computed, computedDirs));
2370 REPORTER_ASSERT(reporter, expected[0] == computed[0]);
2371 REPORTER_ASSERT(reporter, expected[1] == computed[1]);
2372 REPORTER_ASSERT(reporter, expectedDirs[0] == SkPathPriv::AsFirstDirection(computedDirs[0]));
2373 REPORTER_ASSERT(reporter, expectedDirs[1] == SkPathPriv::AsFirstDirection(computedDirs[1]));
2374 }
2375 }
2376
2377 // fail, close then line
2378 SkPath path1;
2379 if (rectFirst) {
2380 path1.addRect(-1, -1, 2, 2, SkPath::kCW_Direction);
2381 }
2382 path1.moveTo(r1[0].fX, r1[0].fY);
2383 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2384 path1.lineTo(r1[index].fX, r1[index].fY);
2385 }
2386 path1.close();
2387 path1.lineTo(1, 0);
2388 if (!rectFirst) {
2389 path1.addRect(-1, -1, 2, 2, SkPath::kCCW_Direction);
2390 }
2391 REPORTER_ASSERT(reporter, !path1.isNestedFillRects(nullptr));
2392
2393 // fail, move in the middle
2394 path1.reset();
2395 if (rectFirst) {
2396 path1.addRect(-1, -1, 2, 2, SkPath::kCW_Direction);
2397 }
2398 path1.moveTo(r1[0].fX, r1[0].fY);
2399 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2400 if (index == 2) {
2401 path1.moveTo(1, .5f);
2402 }
2403 path1.lineTo(r1[index].fX, r1[index].fY);
2404 }
2405 path1.close();
2406 if (!rectFirst) {
2407 path1.addRect(-1, -1, 2, 2, SkPath::kCCW_Direction);
2408 }
2409 REPORTER_ASSERT(reporter, !path1.isNestedFillRects(nullptr));
2410
2411 // fail, move on the edge
2412 path1.reset();
2413 if (rectFirst) {
2414 path1.addRect(-1, -1, 2, 2, SkPath::kCW_Direction);
2415 }
2416 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2417 path1.moveTo(r1[index - 1].fX, r1[index - 1].fY);
2418 path1.lineTo(r1[index].fX, r1[index].fY);
2419 }
2420 path1.close();
2421 if (!rectFirst) {
2422 path1.addRect(-1, -1, 2, 2, SkPath::kCCW_Direction);
2423 }
2424 REPORTER_ASSERT(reporter, !path1.isNestedFillRects(nullptr));
2425
2426 // fail, quad
2427 path1.reset();
2428 if (rectFirst) {
2429 path1.addRect(-1, -1, 2, 2, SkPath::kCW_Direction);
2430 }
2431 path1.moveTo(r1[0].fX, r1[0].fY);
2432 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2433 if (index == 2) {
2434 path1.quadTo(1, .5f, 1, .5f);
2435 }
2436 path1.lineTo(r1[index].fX, r1[index].fY);
2437 }
2438 path1.close();
2439 if (!rectFirst) {
2440 path1.addRect(-1, -1, 2, 2, SkPath::kCCW_Direction);
2441 }
2442 REPORTER_ASSERT(reporter, !path1.isNestedFillRects(nullptr));
2443
2444 // fail, cubic
2445 path1.reset();
2446 if (rectFirst) {
2447 path1.addRect(-1, -1, 2, 2, SkPath::kCW_Direction);
2448 }
2449 path1.moveTo(r1[0].fX, r1[0].fY);
2450 for (index = 1; index < SkToInt(SK_ARRAY_COUNT(r1)); ++index) {
2451 if (index == 2) {
2452 path1.cubicTo(1, .5f, 1, .5f, 1, .5f);
2453 }
2454 path1.lineTo(r1[index].fX, r1[index].fY);
2455 }
2456 path1.close();
2457 if (!rectFirst) {
2458 path1.addRect(-1, -1, 2, 2, SkPath::kCCW_Direction);
2459 }
2460 REPORTER_ASSERT(reporter, !path1.isNestedFillRects(nullptr));
2461
2462 // fail, not nested
2463 path1.reset();
2464 path1.addRect(1, 1, 3, 3, SkPath::kCW_Direction);
2465 path1.addRect(2, 2, 4, 4, SkPath::kCW_Direction);
2466 REPORTER_ASSERT(reporter, !path1.isNestedFillRects(nullptr));
2467 }
2468
2469 // pass, constructed explicitly from manually closed rects specified as moves/lines.
2470 SkPath path;
2471 path.moveTo(0, 0);
2472 path.lineTo(10, 0);
2473 path.lineTo(10, 10);
2474 path.lineTo(0, 10);
2475 path.lineTo(0, 0);
2476 path.moveTo(1, 1);
2477 path.lineTo(9, 1);
2478 path.lineTo(9, 9);
2479 path.lineTo(1, 9);
2480 path.lineTo(1, 1);
2481 REPORTER_ASSERT(reporter, path.isNestedFillRects(nullptr));
2482
2483 // pass, stroke rect
2484 SkPath src, dst;
2485 src.addRect(1, 1, 7, 7, SkPath::kCW_Direction);
2486 SkPaint strokePaint;
2487 strokePaint.setStyle(SkPaint::kStroke_Style);
2488 strokePaint.setStrokeWidth(2);
2489 strokePaint.getFillPath(src, &dst);
2490 REPORTER_ASSERT(reporter, dst.isNestedFillRects(nullptr));
2491}
2492
2493static void write_and_read_back(skiatest::Reporter* reporter,
2494 const SkPath& p) {
2495 SkWriter32 writer;
2496 writer.writePath(p);
2497 size_t size = writer.bytesWritten();
2498 SkAutoMalloc storage(size);
2499 writer.flatten(storage.get());
2500 SkReader32 reader(storage.get(), size);
2501
2502 SkPath readBack;
2503 REPORTER_ASSERT(reporter, readBack != p);
2504 reader.readPath(&readBack);
2505 REPORTER_ASSERT(reporter, readBack == p);
2506
2507 REPORTER_ASSERT(reporter, readBack.getConvexityOrUnknown() ==
2508 p.getConvexityOrUnknown());
2509
2510 SkRect oval0, oval1;
2511 SkPath::Direction dir0, dir1;
2512 unsigned start0, start1;
2513 REPORTER_ASSERT(reporter, readBack.isOval(nullptr) == p.isOval(nullptr));
2514 if (p.isOval(&oval0, &dir0, &start0) && readBack.isOval(&oval1, &dir1, &start1)) {
2515 REPORTER_ASSERT(reporter, oval0 == oval1);
2516 REPORTER_ASSERT(reporter, dir0 == dir1);
2517 REPORTER_ASSERT(reporter, start0 == start1);
2518 }
2519 REPORTER_ASSERT(reporter, readBack.isRRect(nullptr) == p.isRRect(nullptr));
2520 SkRRect rrect0, rrect1;
2521 if (p.isRRect(&rrect0, &dir0, &start0) && readBack.isRRect(&rrect1, &dir1, &start1)) {
2522 REPORTER_ASSERT(reporter, rrect0 == rrect1);
2523 REPORTER_ASSERT(reporter, dir0 == dir1);
2524 REPORTER_ASSERT(reporter, start0 == start1);
2525 }
2526 const SkRect& origBounds = p.getBounds();
2527 const SkRect& readBackBounds = readBack.getBounds();
2528
2529 REPORTER_ASSERT(reporter, origBounds == readBackBounds);
2530}
2531
2532static void test_corrupt_flattening(skiatest::Reporter* reporter) {
2533 SkPath path;
2534 path.moveTo(1, 2);
2535 path.lineTo(1, 2);
2536 path.quadTo(1, 2, 3, 4);
2537 path.conicTo(1, 2, 3, 4, 0.5f);
2538 path.cubicTo(1, 2, 3, 4, 5, 6);
2539 uint8_t buffer[1024];
2540 SkDEBUGCODE(size_t size =) path.writeToMemory(buffer);
2541 SkASSERT(size <= sizeof(buffer));
2542
2543 // find where the counts and verbs are stored : from the impl in SkPathRef.cpp
2544 int32_t* vCount = (int32_t*)&buffer[16];
2545 SkASSERT(*vCount == 5);
2546 int32_t* pCount = (int32_t*)&buffer[20];
2547 SkASSERT(*pCount == 9);
2548 int32_t* cCount = (int32_t*)&buffer[24];
2549 SkASSERT(*cCount == 1);
2550 uint8_t* verbs = &buffer[28];
2551
2552 REPORTER_ASSERT(reporter, path.readFromMemory(buffer, sizeof(buffer)));
2553
2554 // check that we detect under/over-flow of counts
2555
2556 *vCount += 1;
2557 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2558 *vCount -= 1; // restore
2559
2560 *pCount += 1;
2561 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2562 *pCount -= 2;
2563 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2564 *pCount += 1; // restore
2565
2566 *cCount += 1;
2567 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2568 *cCount -= 2;
2569 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2570 *cCount += 1; // restore
2571
2572 // Check that we detect when the verbs indicate more or fewer pts/conics
2573
2574 uint8_t save = verbs[0];
2575 SkASSERT(save == SkPath::kCubic_Verb);
2576 verbs[0] = SkPath::kQuad_Verb;
2577 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2578 verbs[0] = save;
2579
2580 save = verbs[1];
2581 SkASSERT(save == SkPath::kConic_Verb);
2582 verbs[1] = SkPath::kQuad_Verb;
2583 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2584 verbs[1] = SkPath::kCubic_Verb;
2585 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2586 verbs[1] = save;
2587
2588 // Check that we detect invalid verbs
2589 save = verbs[1];
2590 verbs[1] = 17;
2591 REPORTER_ASSERT(reporter, !path.readFromMemory(buffer, sizeof(buffer)));
2592 verbs[1] = save;
2593}
2594
2595static void test_flattening(skiatest::Reporter* reporter) {
2596 SkPath p;
2597
2598 static const SkPoint pts[] = {
2599 { 0, 0 },
2600 { SkIntToScalar(10), SkIntToScalar(10) },
2601 { SkIntToScalar(20), SkIntToScalar(10) }, { SkIntToScalar(20), 0 },
2602 { 0, 0 }, { 0, SkIntToScalar(10) }, { SkIntToScalar(1), SkIntToScalar(10) }
2603 };
2604 p.moveTo(pts[0]);
2605 p.lineTo(pts[1]);
2606 p.quadTo(pts[2], pts[3]);
2607 p.cubicTo(pts[4], pts[5], pts[6]);
2608
2609 write_and_read_back(reporter, p);
2610
2611 // create a buffer that should be much larger than the path so we don't
2612 // kill our stack if writer goes too far.
2613 char buffer[1024];
2614 size_t size1 = p.writeToMemory(nullptr);
2615 size_t size2 = p.writeToMemory(buffer);
2616 REPORTER_ASSERT(reporter, size1 == size2);
2617
2618 SkPath p2;
2619 size_t size3 = p2.readFromMemory(buffer, 1024);
2620 REPORTER_ASSERT(reporter, size1 == size3);
2621 REPORTER_ASSERT(reporter, p == p2);
2622
2623 size3 = p2.readFromMemory(buffer, 0);
2624 REPORTER_ASSERT(reporter, !size3);
2625
2626 SkPath tooShort;
2627 size3 = tooShort.readFromMemory(buffer, size1 - 1);
2628 REPORTER_ASSERT(reporter, tooShort.isEmpty());
2629
2630 char buffer2[1024];
2631 size3 = p2.writeToMemory(buffer2);
2632 REPORTER_ASSERT(reporter, size1 == size3);
2633 REPORTER_ASSERT(reporter, memcmp(buffer, buffer2, size1) == 0);
2634
2635 // test persistence of the oval flag & convexity
2636 {
2637 SkPath oval;
2638 SkRect rect = SkRect::MakeWH(10, 10);
2639 oval.addOval(rect);
2640
2641 write_and_read_back(reporter, oval);
2642 }
2643
2644 test_corrupt_flattening(reporter);
2645}
2646
2647static void test_transform(skiatest::Reporter* reporter) {
2648 SkPath p;
2649
2650#define CONIC_PERSPECTIVE_BUG_FIXED 0
2651 static const SkPoint pts[] = {
2652 { 0, 0 }, // move
2653 { SkIntToScalar(10), SkIntToScalar(10) }, // line
2654 { SkIntToScalar(20), SkIntToScalar(10) }, { SkIntToScalar(20), 0 }, // quad
2655 { 0, 0 }, { 0, SkIntToScalar(10) }, { SkIntToScalar(1), SkIntToScalar(10) }, // cubic
2656#if CONIC_PERSPECTIVE_BUG_FIXED
2657 { 0, 0 }, { SkIntToScalar(20), SkIntToScalar(10) }, // conic
2658#endif
2659 };
2660 const int kPtCount = SK_ARRAY_COUNT(pts);
2661
2662 p.moveTo(pts[0]);
2663 p.lineTo(pts[1]);
2664 p.quadTo(pts[2], pts[3]);
2665 p.cubicTo(pts[4], pts[5], pts[6]);
2666#if CONIC_PERSPECTIVE_BUG_FIXED
2667 p.conicTo(pts[4], pts[5], 0.5f);
2668#endif
2669 p.close();
2670
2671 {
2672 SkMatrix matrix;
2673 matrix.reset();
2674 SkPath p1;
2675 p.transform(matrix, &p1);
2676 REPORTER_ASSERT(reporter, p == p1);
2677 }
2678
2679
2680 {
2681 SkMatrix matrix;
2682 matrix.setScale(SK_Scalar1 * 2, SK_Scalar1 * 3);
2683
2684 SkPath p1; // Leave p1 non-unique (i.e., the empty path)
2685
2686 p.transform(matrix, &p1);
2687 SkPoint pts1[kPtCount];
2688 int count = p1.getPoints(pts1, kPtCount);
2689 REPORTER_ASSERT(reporter, kPtCount == count);
2690 for (int i = 0; i < count; ++i) {
2691 SkPoint newPt = SkPoint::Make(pts[i].fX * 2, pts[i].fY * 3);
2692 REPORTER_ASSERT(reporter, newPt == pts1[i]);
2693 }
2694 }
2695
2696 {
2697 SkMatrix matrix;
2698 matrix.reset();
2699 matrix.setPerspX(4);
2700
2701 SkPath p1;
2702 p1.moveTo(SkPoint::Make(0, 0));
2703
2704 p.transform(matrix, &p1);
2705 REPORTER_ASSERT(reporter, matrix.invert(&matrix));
2706 p1.transform(matrix, nullptr);
2707 SkRect pBounds = p.getBounds();
2708 SkRect p1Bounds = p1.getBounds();
2709 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(pBounds.fLeft, p1Bounds.fLeft));
2710 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(pBounds.fTop, p1Bounds.fTop));
2711 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(pBounds.fRight, p1Bounds.fRight));
2712 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(pBounds.fBottom, p1Bounds.fBottom));
2713 }
2714
2715 p.reset();
2716 p.addCircle(0, 0, 1, SkPath::kCW_Direction);
2717
2718 {
2719 SkMatrix matrix;
2720 matrix.reset();
2721 SkPath p1;
2722 p1.moveTo(SkPoint::Make(0, 0));
2723
2724 p.transform(matrix, &p1);
2725 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(p1, SkPathPriv::kCW_FirstDirection));
2726 }
2727
2728
2729 {
2730 SkMatrix matrix;
2731 matrix.reset();
2732 matrix.setScaleX(-1);
2733 SkPath p1;
2734 p1.moveTo(SkPoint::Make(0, 0)); // Make p1 unique (i.e., not empty path)
2735
2736 p.transform(matrix, &p1);
2737 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(p1, SkPathPriv::kCCW_FirstDirection));
2738 }
2739
2740 {
2741 SkMatrix matrix;
2742 matrix.setAll(1, 1, 0, 1, 1, 0, 0, 0, 1);
2743 SkPath p1;
2744 p1.moveTo(SkPoint::Make(0, 0)); // Make p1 unique (i.e., not empty path)
2745
2746 p.transform(matrix, &p1);
2747 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(p1, SkPathPriv::kUnknown_FirstDirection));
2748 }
2749}
2750
2751static void test_zero_length_paths(skiatest::Reporter* reporter) {
2752 SkPath p;
2753 uint8_t verbs[32];
2754
2755 struct SUPPRESS_VISIBILITY_WARNING zeroPathTestData {
2756 const char* testPath;
2757 const size_t numResultPts;
2758 const SkRect resultBound;
2759 const SkPath::Verb* resultVerbs;
2760 const size_t numResultVerbs;
2761 };
2762
2763 static const SkPath::Verb resultVerbs1[] = { SkPath::kMove_Verb };
2764 static const SkPath::Verb resultVerbs2[] = { SkPath::kMove_Verb, SkPath::kMove_Verb };
2765 static const SkPath::Verb resultVerbs3[] = { SkPath::kMove_Verb, SkPath::kClose_Verb };
2766 static const SkPath::Verb resultVerbs4[] = { SkPath::kMove_Verb, SkPath::kClose_Verb, SkPath::kMove_Verb, SkPath::kClose_Verb };
2767 static const SkPath::Verb resultVerbs5[] = { SkPath::kMove_Verb, SkPath::kLine_Verb };
2768 static const SkPath::Verb resultVerbs6[] = { SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kMove_Verb, SkPath::kLine_Verb };
2769 static const SkPath::Verb resultVerbs7[] = { SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kClose_Verb };
2770 static const SkPath::Verb resultVerbs8[] = {
2771 SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kClose_Verb, SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kClose_Verb
2772 };
2773 static const SkPath::Verb resultVerbs9[] = { SkPath::kMove_Verb, SkPath::kQuad_Verb };
2774 static const SkPath::Verb resultVerbs10[] = { SkPath::kMove_Verb, SkPath::kQuad_Verb, SkPath::kMove_Verb, SkPath::kQuad_Verb };
2775 static const SkPath::Verb resultVerbs11[] = { SkPath::kMove_Verb, SkPath::kQuad_Verb, SkPath::kClose_Verb };
2776 static const SkPath::Verb resultVerbs12[] = {
2777 SkPath::kMove_Verb, SkPath::kQuad_Verb, SkPath::kClose_Verb, SkPath::kMove_Verb, SkPath::kQuad_Verb, SkPath::kClose_Verb
2778 };
2779 static const SkPath::Verb resultVerbs13[] = { SkPath::kMove_Verb, SkPath::kCubic_Verb };
2780 static const SkPath::Verb resultVerbs14[] = { SkPath::kMove_Verb, SkPath::kCubic_Verb, SkPath::kMove_Verb, SkPath::kCubic_Verb };
2781 static const SkPath::Verb resultVerbs15[] = { SkPath::kMove_Verb, SkPath::kCubic_Verb, SkPath::kClose_Verb };
2782 static const SkPath::Verb resultVerbs16[] = {
2783 SkPath::kMove_Verb, SkPath::kCubic_Verb, SkPath::kClose_Verb, SkPath::kMove_Verb, SkPath::kCubic_Verb, SkPath::kClose_Verb
2784 };
2785 static const struct zeroPathTestData gZeroLengthTests[] = {
2786 { "M 1 1", 1, {1, 1, 1, 1}, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2787 { "M 1 1 M 2 1", 2, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs2, SK_ARRAY_COUNT(resultVerbs2) },
2788 { "M 1 1 z", 1, {1, 1, 1, 1}, resultVerbs3, SK_ARRAY_COUNT(resultVerbs3) },
2789 { "M 1 1 z M 2 1 z", 2, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs4, SK_ARRAY_COUNT(resultVerbs4) },
2790 { "M 1 1 L 1 1", 2, {SK_Scalar1, SK_Scalar1, SK_Scalar1, SK_Scalar1}, resultVerbs5, SK_ARRAY_COUNT(resultVerbs5) },
2791 { "M 1 1 L 1 1 M 2 1 L 2 1", 4, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs6, SK_ARRAY_COUNT(resultVerbs6) },
2792 { "M 1 1 L 1 1 z", 2, {SK_Scalar1, SK_Scalar1, SK_Scalar1, SK_Scalar1}, resultVerbs7, SK_ARRAY_COUNT(resultVerbs7) },
2793 { "M 1 1 L 1 1 z M 2 1 L 2 1 z", 4, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs8, SK_ARRAY_COUNT(resultVerbs8) },
2794 { "M 1 1 Q 1 1 1 1", 3, {SK_Scalar1, SK_Scalar1, SK_Scalar1, SK_Scalar1}, resultVerbs9, SK_ARRAY_COUNT(resultVerbs9) },
2795 { "M 1 1 Q 1 1 1 1 M 2 1 Q 2 1 2 1", 6, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs10, SK_ARRAY_COUNT(resultVerbs10) },
2796 { "M 1 1 Q 1 1 1 1 z", 3, {SK_Scalar1, SK_Scalar1, SK_Scalar1, SK_Scalar1}, resultVerbs11, SK_ARRAY_COUNT(resultVerbs11) },
2797 { "M 1 1 Q 1 1 1 1 z M 2 1 Q 2 1 2 1 z", 6, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs12, SK_ARRAY_COUNT(resultVerbs12) },
2798 { "M 1 1 C 1 1 1 1 1 1", 4, {SK_Scalar1, SK_Scalar1, SK_Scalar1, SK_Scalar1}, resultVerbs13, SK_ARRAY_COUNT(resultVerbs13) },
2799 { "M 1 1 C 1 1 1 1 1 1 M 2 1 C 2 1 2 1 2 1", 8, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs14,
2800 SK_ARRAY_COUNT(resultVerbs14)
2801 },
2802 { "M 1 1 C 1 1 1 1 1 1 z", 4, {SK_Scalar1, SK_Scalar1, SK_Scalar1, SK_Scalar1}, resultVerbs15, SK_ARRAY_COUNT(resultVerbs15) },
2803 { "M 1 1 C 1 1 1 1 1 1 z M 2 1 C 2 1 2 1 2 1 z", 8, {SK_Scalar1, SK_Scalar1, 2*SK_Scalar1, SK_Scalar1}, resultVerbs16,
2804 SK_ARRAY_COUNT(resultVerbs16)
2805 }
2806 };
2807
2808 for (size_t i = 0; i < SK_ARRAY_COUNT(gZeroLengthTests); ++i) {
2809 p.reset();
2810 bool valid = SkParsePath::FromSVGString(gZeroLengthTests[i].testPath, &p);
2811 REPORTER_ASSERT(reporter, valid);
2812 REPORTER_ASSERT(reporter, !p.isEmpty());
2813 REPORTER_ASSERT(reporter, gZeroLengthTests[i].numResultPts == (size_t)p.countPoints());
2814 REPORTER_ASSERT(reporter, gZeroLengthTests[i].resultBound == p.getBounds());
2815 REPORTER_ASSERT(reporter, gZeroLengthTests[i].numResultVerbs == (size_t)p.getVerbs(verbs, SK_ARRAY_COUNT(verbs)));
2816 for (size_t j = 0; j < gZeroLengthTests[i].numResultVerbs; ++j) {
2817 REPORTER_ASSERT(reporter, gZeroLengthTests[i].resultVerbs[j] == verbs[j]);
2818 }
2819 }
2820}
2821
2822struct SegmentInfo {
2823 SkPath fPath;
2824 int fPointCount;
2825};
2826
2827#define kCurveSegmentMask (SkPath::kQuad_SegmentMask | SkPath::kCubic_SegmentMask)
2828
2829static void test_segment_masks(skiatest::Reporter* reporter) {
2830 SkPath p, p2;
2831
2832 p.moveTo(0, 0);
2833 p.quadTo(100, 100, 200, 200);
2834 REPORTER_ASSERT(reporter, SkPath::kQuad_SegmentMask == p.getSegmentMasks());
2835 REPORTER_ASSERT(reporter, !p.isEmpty());
2836 p2 = p;
2837 REPORTER_ASSERT(reporter, p2.getSegmentMasks() == p.getSegmentMasks());
2838 p.cubicTo(100, 100, 200, 200, 300, 300);
2839 REPORTER_ASSERT(reporter, kCurveSegmentMask == p.getSegmentMasks());
2840 REPORTER_ASSERT(reporter, !p.isEmpty());
2841 p2 = p;
2842 REPORTER_ASSERT(reporter, p2.getSegmentMasks() == p.getSegmentMasks());
2843
2844 p.reset();
2845 p.moveTo(0, 0);
2846 p.cubicTo(100, 100, 200, 200, 300, 300);
2847 REPORTER_ASSERT(reporter, SkPath::kCubic_SegmentMask == p.getSegmentMasks());
2848 p2 = p;
2849 REPORTER_ASSERT(reporter, p2.getSegmentMasks() == p.getSegmentMasks());
2850
2851 REPORTER_ASSERT(reporter, !p.isEmpty());
2852}
2853
2854static void test_iter(skiatest::Reporter* reporter) {
2855 SkPath p;
2856 SkPoint pts[4];
2857
2858 // Test an iterator with no path
2859 SkPath::Iter noPathIter;
2860 REPORTER_ASSERT(reporter, noPathIter.next(pts) == SkPath::kDone_Verb);
2861
2862 // Test that setting an empty path works
2863 noPathIter.setPath(p, false);
2864 REPORTER_ASSERT(reporter, noPathIter.next(pts) == SkPath::kDone_Verb);
2865
2866 // Test that close path makes no difference for an empty path
2867 noPathIter.setPath(p, true);
2868 REPORTER_ASSERT(reporter, noPathIter.next(pts) == SkPath::kDone_Verb);
2869
2870 // Test an iterator with an initial empty path
2871 SkPath::Iter iter(p, false);
2872 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kDone_Verb);
2873
2874 // Test that close path makes no difference
2875 iter.setPath(p, true);
2876 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kDone_Verb);
2877
2878
2879 struct iterTestData {
2880 const char* testPath;
2881 const bool forceClose;
2882 const bool consumeDegenerates;
2883 const size_t* numResultPtsPerVerb;
2884 const SkPoint* resultPts;
2885 const SkPath::Verb* resultVerbs;
2886 const size_t numResultVerbs;
2887 };
2888
2889 static const SkPath::Verb resultVerbs1[] = { SkPath::kDone_Verb };
2890 static const SkPath::Verb resultVerbs2[] = {
2891 SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kLine_Verb, SkPath::kDone_Verb
2892 };
2893 static const SkPath::Verb resultVerbs3[] = {
2894 SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kLine_Verb, SkPath::kLine_Verb, SkPath::kClose_Verb, SkPath::kDone_Verb
2895 };
2896 static const SkPath::Verb resultVerbs4[] = {
2897 SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kMove_Verb, SkPath::kClose_Verb, SkPath::kDone_Verb
2898 };
2899 static const SkPath::Verb resultVerbs5[] = {
2900 SkPath::kMove_Verb, SkPath::kLine_Verb, SkPath::kClose_Verb, SkPath::kMove_Verb, SkPath::kClose_Verb, SkPath::kDone_Verb
2901 };
2902 static const size_t resultPtsSizes1[] = { 0 };
2903 static const size_t resultPtsSizes2[] = { 1, 2, 2, 0 };
2904 static const size_t resultPtsSizes3[] = { 1, 2, 2, 2, 1, 0 };
2905 static const size_t resultPtsSizes4[] = { 1, 2, 1, 1, 0 };
2906 static const size_t resultPtsSizes5[] = { 1, 2, 1, 1, 1, 0 };
2907 static const SkPoint* resultPts1 = nullptr;
2908 static const SkPoint resultPts2[] = {
2909 { SK_Scalar1, 0 }, { SK_Scalar1, 0 }, { SK_Scalar1, SK_Scalar1 }, { SK_Scalar1, SK_Scalar1 }, { 0, SK_Scalar1 }
2910 };
2911 static const SkPoint resultPts3[] = {
2912 { SK_Scalar1, 0 }, { SK_Scalar1, 0 }, { SK_Scalar1, SK_Scalar1 }, { SK_Scalar1, SK_Scalar1 }, { 0, SK_Scalar1 },
2913 { 0, SK_Scalar1 }, { SK_Scalar1, 0 }, { SK_Scalar1, 0 }
2914 };
2915 static const SkPoint resultPts4[] = {
2916 { SK_Scalar1, 0 }, { SK_Scalar1, 0 }, { SK_Scalar1, 0 }, { 0, 0 }, { 0, 0 }
2917 };
2918 static const SkPoint resultPts5[] = {
2919 { SK_Scalar1, 0 }, { SK_Scalar1, 0 }, { SK_Scalar1, 0 }, { SK_Scalar1, 0 }, { 0, 0 }, { 0, 0 }
2920 };
2921 static const struct iterTestData gIterTests[] = {
2922 { "M 1 0", false, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2923 { "M 1 0 M 2 0 M 3 0 M 4 0 M 5 0", false, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2924 { "M 1 0 M 1 0 M 3 0 M 4 0 M 5 0", true, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2925 { "z", false, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2926 { "z", true, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2927 { "z M 1 0 z z M 2 0 z M 3 0 M 4 0 z", false, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2928 { "z M 1 0 z z M 2 0 z M 3 0 M 4 0 z", true, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2929 { "M 1 0 L 1 1 L 0 1 M 0 0 z", false, true, resultPtsSizes2, resultPts2, resultVerbs2, SK_ARRAY_COUNT(resultVerbs2) },
2930 { "M 1 0 L 1 1 L 0 1 M 0 0 z", true, true, resultPtsSizes3, resultPts3, resultVerbs3, SK_ARRAY_COUNT(resultVerbs3) },
2931 { "M 1 0 L 1 0 M 0 0 z", false, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2932 { "M 1 0 L 1 0 M 0 0 z", true, true, resultPtsSizes1, resultPts1, resultVerbs1, SK_ARRAY_COUNT(resultVerbs1) },
2933 { "M 1 0 L 1 0 M 0 0 z", false, false, resultPtsSizes4, resultPts4, resultVerbs4, SK_ARRAY_COUNT(resultVerbs4) },
2934 { "M 1 0 L 1 0 M 0 0 z", true, false, resultPtsSizes5, resultPts5, resultVerbs5, SK_ARRAY_COUNT(resultVerbs5) }
2935 };
2936
2937 for (size_t i = 0; i < SK_ARRAY_COUNT(gIterTests); ++i) {
2938 p.reset();
2939 bool valid = SkParsePath::FromSVGString(gIterTests[i].testPath, &p);
2940 REPORTER_ASSERT(reporter, valid);
2941 iter.setPath(p, gIterTests[i].forceClose);
2942 int j = 0, l = 0;
2943 do {
2944 REPORTER_ASSERT(reporter, iter.next(pts, gIterTests[i].consumeDegenerates) == gIterTests[i].resultVerbs[j]);
2945 for (int k = 0; k < (int)gIterTests[i].numResultPtsPerVerb[j]; ++k) {
2946 REPORTER_ASSERT(reporter, pts[k] == gIterTests[i].resultPts[l++]);
2947 }
2948 } while (gIterTests[i].resultVerbs[j++] != SkPath::kDone_Verb);
2949 REPORTER_ASSERT(reporter, j == (int)gIterTests[i].numResultVerbs);
2950 }
2951
2952 p.reset();
2953 iter.setPath(p, false);
2954 REPORTER_ASSERT(reporter, !iter.isClosedContour());
2955 p.lineTo(1, 1);
2956 p.close();
2957 iter.setPath(p, false);
2958 REPORTER_ASSERT(reporter, iter.isClosedContour());
2959 p.reset();
2960 iter.setPath(p, true);
2961 REPORTER_ASSERT(reporter, !iter.isClosedContour());
2962 p.lineTo(1, 1);
2963 iter.setPath(p, true);
2964 REPORTER_ASSERT(reporter, iter.isClosedContour());
2965 p.moveTo(0, 0);
2966 p.lineTo(2, 2);
2967 iter.setPath(p, false);
2968 REPORTER_ASSERT(reporter, !iter.isClosedContour());
2969
2970 // this checks to see if the NaN logic is executed in SkPath::autoClose(), but does not
2971 // check to see if the result is correct.
2972 for (int setNaN = 0; setNaN < 4; ++setNaN) {
2973 p.reset();
2974 p.moveTo(setNaN == 0 ? SK_ScalarNaN : 0, setNaN == 1 ? SK_ScalarNaN : 0);
2975 p.lineTo(setNaN == 2 ? SK_ScalarNaN : 1, setNaN == 3 ? SK_ScalarNaN : 1);
2976 iter.setPath(p, true);
2977 iter.next(pts, false);
2978 iter.next(pts, false);
2979 REPORTER_ASSERT(reporter, SkPath::kClose_Verb == iter.next(pts, false));
2980 }
2981
2982 p.reset();
2983 p.quadTo(0, 0, 0, 0);
2984 iter.setPath(p, false);
2985 iter.next(pts, false);
2986 REPORTER_ASSERT(reporter, SkPath::kQuad_Verb == iter.next(pts, false));
2987 iter.setPath(p, false);
2988 iter.next(pts, false);
2989 REPORTER_ASSERT(reporter, SkPath::kDone_Verb == iter.next(pts, true));
2990
2991 p.reset();
2992 p.conicTo(0, 0, 0, 0, 0.5f);
2993 iter.setPath(p, false);
2994 iter.next(pts, false);
2995 REPORTER_ASSERT(reporter, SkPath::kConic_Verb == iter.next(pts, false));
2996 iter.setPath(p, false);
2997 iter.next(pts, false);
2998 REPORTER_ASSERT(reporter, SkPath::kDone_Verb == iter.next(pts, true));
2999
3000 p.reset();
3001 p.cubicTo(0, 0, 0, 0, 0, 0);
3002 iter.setPath(p, false);
3003 iter.next(pts, false);
3004 REPORTER_ASSERT(reporter, SkPath::kCubic_Verb == iter.next(pts, false));
3005 iter.setPath(p, false);
3006 iter.next(pts, false);
3007 REPORTER_ASSERT(reporter, SkPath::kDone_Verb == iter.next(pts, true));
3008
3009 p.moveTo(1, 1); // add a trailing moveto
3010 iter.setPath(p, false);
3011 iter.next(pts, false);
3012 REPORTER_ASSERT(reporter, SkPath::kCubic_Verb == iter.next(pts, false));
3013 iter.setPath(p, false);
3014 iter.next(pts, false);
3015 REPORTER_ASSERT(reporter, SkPath::kDone_Verb == iter.next(pts, true));
3016
3017 // The GM degeneratesegments.cpp test is more extensive
3018
3019 // Test out mixed degenerate and non-degenerate geometry with Conics
3020 const SkVector radii[4] = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 100, 100 } };
3021 SkRect r = SkRect::MakeWH(100, 100);
3022 SkRRect rr;
3023 rr.setRectRadii(r, radii);
3024 p.reset();
3025 p.addRRect(rr);
3026 iter.setPath(p, false);
3027 REPORTER_ASSERT(reporter, SkPath::kMove_Verb == iter.next(pts));
3028 REPORTER_ASSERT(reporter, SkPath::kLine_Verb == iter.next(pts));
3029 REPORTER_ASSERT(reporter, SkPath::kLine_Verb == iter.next(pts));
3030 REPORTER_ASSERT(reporter, SkPath::kConic_Verb == iter.next(pts));
3031 REPORTER_ASSERT(reporter, SK_ScalarRoot2Over2 == iter.conicWeight());
3032}
3033
3034static void test_raw_iter(skiatest::Reporter* reporter) {
3035 SkPath p;
3036 SkPoint pts[4];
3037
3038 // Test an iterator with no path
3039 SkPath::RawIter noPathIter;
3040 REPORTER_ASSERT(reporter, noPathIter.next(pts) == SkPath::kDone_Verb);
3041 // Test that setting an empty path works
3042 noPathIter.setPath(p);
3043 REPORTER_ASSERT(reporter, noPathIter.next(pts) == SkPath::kDone_Verb);
3044
3045 // Test an iterator with an initial empty path
3046 SkPath::RawIter iter(p);
3047 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kDone_Verb);
3048
3049 // Test that a move-only path returns the move.
3050 p.moveTo(SK_Scalar1, 0);
3051 iter.setPath(p);
3052 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3053 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1);
3054 REPORTER_ASSERT(reporter, pts[0].fY == 0);
3055 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kDone_Verb);
3056
3057 // No matter how many moves we add, we should get them all back
3058 p.moveTo(SK_Scalar1*2, SK_Scalar1);
3059 p.moveTo(SK_Scalar1*3, SK_Scalar1*2);
3060 iter.setPath(p);
3061 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3062 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1);
3063 REPORTER_ASSERT(reporter, pts[0].fY == 0);
3064 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3065 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1*2);
3066 REPORTER_ASSERT(reporter, pts[0].fY == SK_Scalar1);
3067 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3068 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1*3);
3069 REPORTER_ASSERT(reporter, pts[0].fY == SK_Scalar1*2);
3070 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kDone_Verb);
3071
3072 // Initial close is never ever stored
3073 p.reset();
3074 p.close();
3075 iter.setPath(p);
3076 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kDone_Verb);
3077
3078 // Move/close sequences
3079 p.reset();
3080 p.close(); // Not stored, no purpose
3081 p.moveTo(SK_Scalar1, 0);
3082 p.close();
3083 p.close(); // Not stored, no purpose
3084 p.moveTo(SK_Scalar1*2, SK_Scalar1);
3085 p.close();
3086 p.moveTo(SK_Scalar1*3, SK_Scalar1*2);
3087 p.moveTo(SK_Scalar1*4, SK_Scalar1*3);
3088 p.close();
3089 iter.setPath(p);
3090 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3091 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1);
3092 REPORTER_ASSERT(reporter, pts[0].fY == 0);
3093 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kClose_Verb);
3094 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3095 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1*2);
3096 REPORTER_ASSERT(reporter, pts[0].fY == SK_Scalar1);
3097 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kClose_Verb);
3098 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3099 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1*3);
3100 REPORTER_ASSERT(reporter, pts[0].fY == SK_Scalar1*2);
3101 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kMove_Verb);
3102 REPORTER_ASSERT(reporter, pts[0].fX == SK_Scalar1*4);
3103 REPORTER_ASSERT(reporter, pts[0].fY == SK_Scalar1*3);
3104 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kClose_Verb);
3105 REPORTER_ASSERT(reporter, iter.next(pts) == SkPath::kDone_Verb);
3106
3107 // Generate random paths and verify
3108 SkPoint randomPts[25];
3109 for (int i = 0; i < 5; ++i) {
3110 for (int j = 0; j < 5; ++j) {
3111 randomPts[i*5+j].set(SK_Scalar1*i, SK_Scalar1*j);
3112 }
3113 }
3114
3115 // Max of 10 segments, max 3 points per segment
3116 SkRandom rand(9876543);
3117 SkPoint expectedPts[31]; // May have leading moveTo
3118 SkPath::Verb expectedVerbs[22]; // May have leading moveTo
3119 SkPath::Verb nextVerb;
3120
3121 for (int i = 0; i < 500; ++i) {
3122 p.reset();
3123 bool lastWasClose = true;
3124 bool haveMoveTo = false;
3125 SkPoint lastMoveToPt = { 0, 0 };
3126 int numPoints = 0;
3127 int numVerbs = (rand.nextU() >> 16) % 10;
3128 int numIterVerbs = 0;
3129 for (int j = 0; j < numVerbs; ++j) {
3130 do {
3131 nextVerb = static_cast<SkPath::Verb>((rand.nextU() >> 16) % SkPath::kDone_Verb);
3132 } while (lastWasClose && nextVerb == SkPath::kClose_Verb);
3133 switch (nextVerb) {
3134 case SkPath::kMove_Verb:
3135 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
3136 p.moveTo(expectedPts[numPoints]);
3137 lastMoveToPt = expectedPts[numPoints];
3138 numPoints += 1;
3139 lastWasClose = false;
3140 haveMoveTo = true;
3141 break;
3142 case SkPath::kLine_Verb:
3143 if (!haveMoveTo) {
3144 expectedPts[numPoints++] = lastMoveToPt;
3145 expectedVerbs[numIterVerbs++] = SkPath::kMove_Verb;
3146 haveMoveTo = true;
3147 }
3148 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
3149 p.lineTo(expectedPts[numPoints]);
3150 numPoints += 1;
3151 lastWasClose = false;
3152 break;
3153 case SkPath::kQuad_Verb:
3154 if (!haveMoveTo) {
3155 expectedPts[numPoints++] = lastMoveToPt;
3156 expectedVerbs[numIterVerbs++] = SkPath::kMove_Verb;
3157 haveMoveTo = true;
3158 }
3159 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
3160 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25];
3161 p.quadTo(expectedPts[numPoints], expectedPts[numPoints + 1]);
3162 numPoints += 2;
3163 lastWasClose = false;
3164 break;
3165 case SkPath::kConic_Verb:
3166 if (!haveMoveTo) {
3167 expectedPts[numPoints++] = lastMoveToPt;
3168 expectedVerbs[numIterVerbs++] = SkPath::kMove_Verb;
3169 haveMoveTo = true;
3170 }
3171 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
3172 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25];
3173 p.conicTo(expectedPts[numPoints], expectedPts[numPoints + 1],
3174 rand.nextUScalar1() * 4);
3175 numPoints += 2;
3176 lastWasClose = false;
3177 break;
3178 case SkPath::kCubic_Verb:
3179 if (!haveMoveTo) {
3180 expectedPts[numPoints++] = lastMoveToPt;
3181 expectedVerbs[numIterVerbs++] = SkPath::kMove_Verb;
3182 haveMoveTo = true;
3183 }
3184 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25];
3185 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25];
3186 expectedPts[numPoints + 2] = randomPts[(rand.nextU() >> 16) % 25];
3187 p.cubicTo(expectedPts[numPoints], expectedPts[numPoints + 1],
3188 expectedPts[numPoints + 2]);
3189 numPoints += 3;
3190 lastWasClose = false;
3191 break;
3192 case SkPath::kClose_Verb:
3193 p.close();
3194 haveMoveTo = false;
3195 lastWasClose = true;
3196 break;
3197 default:
3198 SkDEBUGFAIL("unexpected verb");
3199 }
3200 expectedVerbs[numIterVerbs++] = nextVerb;
3201 }
3202
3203 iter.setPath(p);
3204 numVerbs = numIterVerbs;
3205 numIterVerbs = 0;
3206 int numIterPts = 0;
3207 SkPoint lastMoveTo;
3208 SkPoint lastPt;
3209 lastMoveTo.set(0, 0);
3210 lastPt.set(0, 0);
3211 while ((nextVerb = iter.next(pts)) != SkPath::kDone_Verb) {
3212 REPORTER_ASSERT(reporter, nextVerb == expectedVerbs[numIterVerbs]);
3213 numIterVerbs++;
3214 switch (nextVerb) {
3215 case SkPath::kMove_Verb:
3216 REPORTER_ASSERT(reporter, numIterPts < numPoints);
3217 REPORTER_ASSERT(reporter, pts[0] == expectedPts[numIterPts]);
3218 lastPt = lastMoveTo = pts[0];
3219 numIterPts += 1;
3220 break;
3221 case SkPath::kLine_Verb:
3222 REPORTER_ASSERT(reporter, numIterPts < numPoints + 1);
3223 REPORTER_ASSERT(reporter, pts[0] == lastPt);
3224 REPORTER_ASSERT(reporter, pts[1] == expectedPts[numIterPts]);
3225 lastPt = pts[1];
3226 numIterPts += 1;
3227 break;
3228 case SkPath::kQuad_Verb:
3229 case SkPath::kConic_Verb:
3230 REPORTER_ASSERT(reporter, numIterPts < numPoints + 2);
3231 REPORTER_ASSERT(reporter, pts[0] == lastPt);
3232 REPORTER_ASSERT(reporter, pts[1] == expectedPts[numIterPts]);
3233 REPORTER_ASSERT(reporter, pts[2] == expectedPts[numIterPts + 1]);
3234 lastPt = pts[2];
3235 numIterPts += 2;
3236 break;
3237 case SkPath::kCubic_Verb:
3238 REPORTER_ASSERT(reporter, numIterPts < numPoints + 3);
3239 REPORTER_ASSERT(reporter, pts[0] == lastPt);
3240 REPORTER_ASSERT(reporter, pts[1] == expectedPts[numIterPts]);
3241 REPORTER_ASSERT(reporter, pts[2] == expectedPts[numIterPts + 1]);
3242 REPORTER_ASSERT(reporter, pts[3] == expectedPts[numIterPts + 2]);
3243 lastPt = pts[3];
3244 numIterPts += 3;
3245 break;
3246 case SkPath::kClose_Verb:
3247 lastPt = lastMoveTo;
3248 break;
3249 default:
3250 SkDEBUGFAIL("unexpected verb");
3251 }
3252 }
3253 REPORTER_ASSERT(reporter, numIterPts == numPoints);
3254 REPORTER_ASSERT(reporter, numIterVerbs == numVerbs);
3255 }
3256}
3257
3258static void check_for_circle(skiatest::Reporter* reporter,
3259 const SkPath& path,
3260 bool expectedCircle,
3261 SkPathPriv::FirstDirection expectedDir) {
3262 SkRect rect = SkRect::MakeEmpty();
3263 REPORTER_ASSERT(reporter, path.isOval(&rect) == expectedCircle);
3264 SkPath::Direction isOvalDir;
3265 unsigned isOvalStart;
3266 if (path.isOval(&rect, &isOvalDir, &isOvalStart)) {
3267 REPORTER_ASSERT(reporter, rect.height() == rect.width());
3268 REPORTER_ASSERT(reporter, SkPathPriv::AsFirstDirection(isOvalDir) == expectedDir);
3269 SkPath tmpPath;
3270 tmpPath.addOval(rect, isOvalDir, isOvalStart);
3271 REPORTER_ASSERT(reporter, path == tmpPath);
3272 }
3273 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(path, expectedDir));
3274}
3275
3276static void test_circle_skew(skiatest::Reporter* reporter,
3277 const SkPath& path,
3278 SkPathPriv::FirstDirection dir) {
3279 SkPath tmp;
3280
3281 SkMatrix m;
3282 m.setSkew(SkIntToScalar(3), SkIntToScalar(5));
3283 path.transform(m, &tmp);
3284 // this matrix reverses the direction.
3285 if (SkPathPriv::kCCW_FirstDirection == dir) {
3286 dir = SkPathPriv::kCW_FirstDirection;
3287 } else {
3288 REPORTER_ASSERT(reporter, SkPathPriv::kCW_FirstDirection == dir);
3289 dir = SkPathPriv::kCCW_FirstDirection;
3290 }
3291 check_for_circle(reporter, tmp, false, dir);
3292}
3293
3294static void test_circle_translate(skiatest::Reporter* reporter,
3295 const SkPath& path,
3296 SkPathPriv::FirstDirection dir) {
3297 SkPath tmp;
3298
3299 // translate at small offset
3300 SkMatrix m;
3301 m.setTranslate(SkIntToScalar(15), SkIntToScalar(15));
3302 path.transform(m, &tmp);
3303 check_for_circle(reporter, tmp, true, dir);
3304
3305 tmp.reset();
3306 m.reset();
3307
3308 // translate at a relatively big offset
3309 m.setTranslate(SkIntToScalar(1000), SkIntToScalar(1000));
3310 path.transform(m, &tmp);
3311 check_for_circle(reporter, tmp, true, dir);
3312}
3313
3314static void test_circle_rotate(skiatest::Reporter* reporter,
3315 const SkPath& path,
3316 SkPathPriv::FirstDirection dir) {
3317 for (int angle = 0; angle < 360; ++angle) {
3318 SkPath tmp;
3319 SkMatrix m;
3320 m.setRotate(SkIntToScalar(angle));
3321 path.transform(m, &tmp);
3322
3323 // TODO: a rotated circle whose rotated angle is not a multiple of 90
3324 // degrees is not an oval anymore, this can be improved. we made this
3325 // for the simplicity of our implementation.
3326 if (angle % 90 == 0) {
3327 check_for_circle(reporter, tmp, true, dir);
3328 } else {
3329 check_for_circle(reporter, tmp, false, dir);
3330 }
3331 }
3332}
3333
3334static void test_circle_mirror_x(skiatest::Reporter* reporter,
3335 const SkPath& path,
3336 SkPathPriv::FirstDirection dir) {
3337 SkPath tmp;
3338 SkMatrix m;
3339 m.reset();
3340 m.setScaleX(-SK_Scalar1);
3341 path.transform(m, &tmp);
3342 if (SkPathPriv::kCW_FirstDirection == dir) {
3343 dir = SkPathPriv::kCCW_FirstDirection;
3344 } else {
3345 REPORTER_ASSERT(reporter, SkPathPriv::kCCW_FirstDirection == dir);
3346 dir = SkPathPriv::kCW_FirstDirection;
3347 }
3348 check_for_circle(reporter, tmp, true, dir);
3349}
3350
3351static void test_circle_mirror_y(skiatest::Reporter* reporter,
3352 const SkPath& path,
3353 SkPathPriv::FirstDirection dir) {
3354 SkPath tmp;
3355 SkMatrix m;
3356 m.reset();
3357 m.setScaleY(-SK_Scalar1);
3358 path.transform(m, &tmp);
3359
3360 if (SkPathPriv::kCW_FirstDirection == dir) {
3361 dir = SkPathPriv::kCCW_FirstDirection;
3362 } else {
3363 REPORTER_ASSERT(reporter, SkPathPriv::kCCW_FirstDirection == dir);
3364 dir = SkPathPriv::kCW_FirstDirection;
3365 }
3366
3367 check_for_circle(reporter, tmp, true, dir);
3368}
3369
3370static void test_circle_mirror_xy(skiatest::Reporter* reporter,
3371 const SkPath& path,
3372 SkPathPriv::FirstDirection dir) {
3373 SkPath tmp;
3374 SkMatrix m;
3375 m.reset();
3376 m.setScaleX(-SK_Scalar1);
3377 m.setScaleY(-SK_Scalar1);
3378 path.transform(m, &tmp);
3379
3380 check_for_circle(reporter, tmp, true, dir);
3381}
3382
3383static void test_circle_with_direction(skiatest::Reporter* reporter,
3384 SkPath::Direction inDir) {
3385 const SkPathPriv::FirstDirection dir = SkPathPriv::AsFirstDirection(inDir);
3386 SkPath path;
3387
3388 // circle at origin
3389 path.addCircle(0, 0, SkIntToScalar(20), inDir);
3390
3391 check_for_circle(reporter, path, true, dir);
3392 test_circle_rotate(reporter, path, dir);
3393 test_circle_translate(reporter, path, dir);
3394 test_circle_skew(reporter, path, dir);
3395 test_circle_mirror_x(reporter, path, dir);
3396 test_circle_mirror_y(reporter, path, dir);
3397 test_circle_mirror_xy(reporter, path, dir);
3398
3399 // circle at an offset at (10, 10)
3400 path.reset();
3401 path.addCircle(SkIntToScalar(10), SkIntToScalar(10),
3402 SkIntToScalar(20), inDir);
3403
3404 check_for_circle(reporter, path, true, dir);
3405 test_circle_rotate(reporter, path, dir);
3406 test_circle_translate(reporter, path, dir);
3407 test_circle_skew(reporter, path, dir);
3408 test_circle_mirror_x(reporter, path, dir);
3409 test_circle_mirror_y(reporter, path, dir);
3410 test_circle_mirror_xy(reporter, path, dir);
3411
3412 // Try different starting points for the contour.
3413 for (unsigned start = 0; start < 4; ++start) {
3414 path.reset();
3415 path.addOval(SkRect::MakeXYWH(20, 10, 5, 5), inDir, start);
3416 test_circle_rotate(reporter, path, dir);
3417 test_circle_translate(reporter, path, dir);
3418 test_circle_skew(reporter, path, dir);
3419 test_circle_mirror_x(reporter, path, dir);
3420 test_circle_mirror_y(reporter, path, dir);
3421 test_circle_mirror_xy(reporter, path, dir);
3422 }
3423}
3424
3425static void test_circle_with_add_paths(skiatest::Reporter* reporter) {
3426 SkPath path;
3427 SkPath circle;
3428 SkPath rect;
3429 SkPath empty;
3430
3431 const SkPath::Direction kCircleDir = SkPath::kCW_Direction;
3432 const SkPath::Direction kCircleDirOpposite = SkPath::kCCW_Direction;
3433
3434 circle.addCircle(0, 0, SkIntToScalar(10), kCircleDir);
3435 rect.addRect(SkIntToScalar(5), SkIntToScalar(5),
3436 SkIntToScalar(20), SkIntToScalar(20), SkPath::kCW_Direction);
3437
3438 SkMatrix translate;
3439 translate.setTranslate(SkIntToScalar(12), SkIntToScalar(12));
3440
3441 // Although all the path concatenation related operations leave
3442 // the path a circle, most mark it as a non-circle for simplicity
3443
3444 // empty + circle (translate)
3445 path = empty;
3446 path.addPath(circle, translate);
3447 check_for_circle(reporter, path, false, SkPathPriv::AsFirstDirection(kCircleDir));
3448
3449 // circle + empty (translate)
3450 path = circle;
3451 path.addPath(empty, translate);
3452
3453 check_for_circle(reporter, path, true, SkPathPriv::AsFirstDirection(kCircleDir));
3454
3455 // test reverseAddPath
3456 path = circle;
3457 path.reverseAddPath(rect);
3458 check_for_circle(reporter, path, false, SkPathPriv::AsFirstDirection(kCircleDirOpposite));
3459}
3460
3461static void test_circle(skiatest::Reporter* reporter) {
3462 test_circle_with_direction(reporter, SkPath::kCW_Direction);
3463 test_circle_with_direction(reporter, SkPath::kCCW_Direction);
3464
3465 // multiple addCircle()
3466 SkPath path;
3467 path.addCircle(0, 0, SkIntToScalar(10), SkPath::kCW_Direction);
3468 path.addCircle(0, 0, SkIntToScalar(20), SkPath::kCW_Direction);
3469 check_for_circle(reporter, path, false, SkPathPriv::kCW_FirstDirection);
3470
3471 // some extra lineTo() would make isOval() fail
3472 path.reset();
3473 path.addCircle(0, 0, SkIntToScalar(10), SkPath::kCW_Direction);
3474 path.lineTo(0, 0);
3475 check_for_circle(reporter, path, false, SkPathPriv::kCW_FirstDirection);
3476
3477 // not back to the original point
3478 path.reset();
3479 path.addCircle(0, 0, SkIntToScalar(10), SkPath::kCW_Direction);
3480 path.setLastPt(SkIntToScalar(5), SkIntToScalar(5));
3481 check_for_circle(reporter, path, false, SkPathPriv::kCW_FirstDirection);
3482
3483 test_circle_with_add_paths(reporter);
3484
3485 // test negative radius
3486 path.reset();
3487 path.addCircle(0, 0, -1, SkPath::kCW_Direction);
3488 REPORTER_ASSERT(reporter, path.isEmpty());
3489}
3490
3491static void test_oval(skiatest::Reporter* reporter) {
3492 SkRect rect;
3493 SkMatrix m;
3494 SkPath path;
3495 unsigned start = 0;
3496 SkPath::Direction dir = SkPath::kCCW_Direction;
3497
3498 rect = SkRect::MakeWH(SkIntToScalar(30), SkIntToScalar(50));
3499 path.addOval(rect);
3500
3501 // Defaults to dir = CW and start = 1
3502 REPORTER_ASSERT(reporter, path.isOval(nullptr));
3503
3504 m.setRotate(SkIntToScalar(90));
3505 SkPath tmp;
3506 path.transform(m, &tmp);
3507 // an oval rotated 90 degrees is still an oval. The start index changes from 1 to 2. Direction
3508 // is unchanged.
3509 REPORTER_ASSERT(reporter, tmp.isOval(nullptr, &dir, &start));
3510 REPORTER_ASSERT(reporter, 2 == start);
3511 REPORTER_ASSERT(reporter, SkPath::kCW_Direction == dir);
3512
3513 m.reset();
3514 m.setRotate(SkIntToScalar(30));
3515 tmp.reset();
3516 path.transform(m, &tmp);
3517 // an oval rotated 30 degrees is not an oval anymore.
3518 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3519
3520 // since empty path being transformed.
3521 path.reset();
3522 tmp.reset();
3523 m.reset();
3524 path.transform(m, &tmp);
3525 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3526
3527 // empty path is not an oval
3528 tmp.reset();
3529 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3530
3531 // only has moveTo()s
3532 tmp.reset();
3533 tmp.moveTo(0, 0);
3534 tmp.moveTo(SkIntToScalar(10), SkIntToScalar(10));
3535 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3536
3537 // mimic WebKit's calling convention,
3538 // call moveTo() first and then call addOval()
3539 path.reset();
3540 path.moveTo(0, 0);
3541 path.addOval(rect);
3542 REPORTER_ASSERT(reporter, path.isOval(nullptr));
3543
3544 // copy path
3545 path.reset();
3546 tmp.reset();
3547 tmp.addOval(rect);
3548 path = tmp;
3549 REPORTER_ASSERT(reporter, path.isOval(nullptr, &dir, &start));
3550 REPORTER_ASSERT(reporter, SkPath::kCW_Direction == dir);
3551 REPORTER_ASSERT(reporter, 1 == start);
3552}
3553
3554static void test_empty(skiatest::Reporter* reporter, const SkPath& p) {
3555 SkPath empty;
3556
3557 REPORTER_ASSERT(reporter, p.isEmpty());
3558 REPORTER_ASSERT(reporter, 0 == p.countPoints());
3559 REPORTER_ASSERT(reporter, 0 == p.countVerbs());
3560 REPORTER_ASSERT(reporter, 0 == p.getSegmentMasks());
3561 REPORTER_ASSERT(reporter, p.isConvex());
3562 REPORTER_ASSERT(reporter, p.getFillType() == SkPath::kWinding_FillType);
3563 REPORTER_ASSERT(reporter, !p.isInverseFillType());
3564 REPORTER_ASSERT(reporter, p == empty);
3565 REPORTER_ASSERT(reporter, !(p != empty));
3566}
3567
3568static void test_rrect_is_convex(skiatest::Reporter* reporter, SkPath* path,
3569 SkPath::Direction dir) {
3570 REPORTER_ASSERT(reporter, path->isConvex());
3571 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(*path, SkPathPriv::AsFirstDirection(dir)));
3572 path->setConvexity(SkPath::kUnknown_Convexity);
3573 REPORTER_ASSERT(reporter, path->isConvex());
3574 path->reset();
3575}
3576
3577static void test_rrect_convexity_is_unknown(skiatest::Reporter* reporter, SkPath* path,
3578 SkPath::Direction dir) {
3579 REPORTER_ASSERT(reporter, path->isConvex());
3580 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(*path, SkPathPriv::AsFirstDirection(dir)));
3581 path->setConvexity(SkPath::kUnknown_Convexity);
3582 REPORTER_ASSERT(reporter, path->getConvexity() == SkPath::kUnknown_Convexity);
3583 path->reset();
3584}
3585
3586static void test_rrect(skiatest::Reporter* reporter) {
3587 SkPath p;
3588 SkRRect rr;
3589 SkVector radii[] = {{1, 2}, {3, 4}, {5, 6}, {7, 8}};
3590 SkRect r = {10, 20, 30, 40};
3591 rr.setRectRadii(r, radii);
3592 p.addRRect(rr);
3593 test_rrect_is_convex(reporter, &p, SkPath::kCW_Direction);
3594 p.addRRect(rr, SkPath::kCCW_Direction);
3595 test_rrect_is_convex(reporter, &p, SkPath::kCCW_Direction);
3596 p.addRoundRect(r, &radii[0].fX);
3597 test_rrect_is_convex(reporter, &p, SkPath::kCW_Direction);
3598 p.addRoundRect(r, &radii[0].fX, SkPath::kCCW_Direction);
3599 test_rrect_is_convex(reporter, &p, SkPath::kCCW_Direction);
3600 p.addRoundRect(r, radii[1].fX, radii[1].fY);
3601 test_rrect_is_convex(reporter, &p, SkPath::kCW_Direction);
3602 p.addRoundRect(r, radii[1].fX, radii[1].fY, SkPath::kCCW_Direction);
3603 test_rrect_is_convex(reporter, &p, SkPath::kCCW_Direction);
3604 for (size_t i = 0; i < SK_ARRAY_COUNT(radii); ++i) {
3605 SkVector save = radii[i];
3606 radii[i].set(0, 0);
3607 rr.setRectRadii(r, radii);
3608 p.addRRect(rr);
3609 test_rrect_is_convex(reporter, &p, SkPath::kCW_Direction);
3610 radii[i] = save;
3611 }
3612 p.addRoundRect(r, 0, 0);
3613 SkRect returnedRect;
3614 REPORTER_ASSERT(reporter, p.isRect(&returnedRect));
3615 REPORTER_ASSERT(reporter, returnedRect == r);
3616 test_rrect_is_convex(reporter, &p, SkPath::kCW_Direction);
3617 SkVector zeroRadii[] = {{0, 0}, {0, 0}, {0, 0}, {0, 0}};
3618 rr.setRectRadii(r, zeroRadii);
3619 p.addRRect(rr);
3620 bool closed;
3621 SkPath::Direction dir;
3622 REPORTER_ASSERT(reporter, p.isRect(nullptr, &closed, &dir));
3623 REPORTER_ASSERT(reporter, closed);
3624 REPORTER_ASSERT(reporter, SkPath::kCW_Direction == dir);
3625 test_rrect_is_convex(reporter, &p, SkPath::kCW_Direction);
3626 p.addRRect(rr, SkPath::kCW_Direction);
3627 p.addRRect(rr, SkPath::kCW_Direction);
3628 REPORTER_ASSERT(reporter, !p.isConvex());
3629 p.reset();
3630 p.addRRect(rr, SkPath::kCCW_Direction);
3631 p.addRRect(rr, SkPath::kCCW_Direction);
3632 REPORTER_ASSERT(reporter, !p.isConvex());
3633 p.reset();
3634 SkRect emptyR = {10, 20, 10, 30};
3635 rr.setRectRadii(emptyR, radii);
3636 p.addRRect(rr);
3637 REPORTER_ASSERT(reporter, p.isEmpty());
3638 SkRect largeR = {0, 0, SK_ScalarMax, SK_ScalarMax};
3639 rr.setRectRadii(largeR, radii);
3640 p.addRRect(rr);
3641 test_rrect_convexity_is_unknown(reporter, &p, SkPath::kCW_Direction);
3642
3643 // we check for non-finites
3644 SkRect infR = {0, 0, SK_ScalarMax, SK_ScalarInfinity};
3645 rr.setRectRadii(infR, radii);
3646 REPORTER_ASSERT(reporter, rr.isEmpty());
3647
3648 SkRect tinyR = {0, 0, 1e-9f, 1e-9f};
3649 p.addRoundRect(tinyR, 5e-11f, 5e-11f);
3650 test_rrect_is_convex(reporter, &p, SkPath::kCW_Direction);
3651}
3652
3653static void test_arc(skiatest::Reporter* reporter) {
3654 SkPath p;
3655 SkRect emptyOval = {10, 20, 30, 20};
3656 REPORTER_ASSERT(reporter, emptyOval.isEmpty());
3657 p.addArc(emptyOval, 1, 2);
3658 REPORTER_ASSERT(reporter, p.isEmpty());
3659 p.reset();
3660 SkRect oval = {10, 20, 30, 40};
3661 p.addArc(oval, 1, 0);
3662 REPORTER_ASSERT(reporter, p.isEmpty());
3663 p.reset();
3664 SkPath cwOval;
3665 cwOval.addOval(oval);
3666 p.addArc(oval, 0, 360);
3667 REPORTER_ASSERT(reporter, p == cwOval);
3668 p.reset();
3669 SkPath ccwOval;
3670 ccwOval.addOval(oval, SkPath::kCCW_Direction);
3671 p.addArc(oval, 0, -360);
3672 REPORTER_ASSERT(reporter, p == ccwOval);
3673 p.reset();
3674 p.addArc(oval, 1, 180);
3675 REPORTER_ASSERT(reporter, p.isConvex());
3676 REPORTER_ASSERT(reporter, SkPathPriv::CheapIsFirstDirection(p, SkPathPriv::kCW_FirstDirection));
3677 p.setConvexity(SkPath::kUnknown_Convexity);
3678 REPORTER_ASSERT(reporter, p.isConvex());
3679}
3680
3681static inline SkScalar oval_start_index_to_angle(unsigned start) {
3682 switch (start) {
3683 case 0:
3684 return 270.f;
3685 case 1:
3686 return 0.f;
3687 case 2:
3688 return 90.f;
3689 case 3:
3690 return 180.f;
3691 default:
3692 return -1.f;
3693 }
3694}
3695
3696static inline SkScalar canonical_start_angle(float angle) {
3697 while (angle < 0.f) {
3698 angle += 360.f;
3699 }
3700 while (angle >= 360.f) {
3701 angle -= 360.f;
3702 }
3703 return angle;
3704}
3705
3706static void check_oval_arc(skiatest::Reporter* reporter, SkScalar start, SkScalar sweep,
3707 const SkPath& path) {
3708 SkRect r = SkRect::MakeEmpty();
3709 SkPath::Direction d = SkPath::kCCW_Direction;
3710 unsigned s = ~0U;
3711 bool isOval = path.isOval(&r, &d, &s);
3712 REPORTER_ASSERT(reporter, isOval);
3713 SkPath recreatedPath;
3714 recreatedPath.addOval(r, d, s);
3715 REPORTER_ASSERT(reporter, path == recreatedPath);
3716 REPORTER_ASSERT(reporter, oval_start_index_to_angle(s) == canonical_start_angle(start));
3717 REPORTER_ASSERT(reporter, (SkPath::kCW_Direction == d) == (sweep > 0.f));
3718}
3719
3720static void test_arc_ovals(skiatest::Reporter* reporter) {
3721 SkRect oval = SkRect::MakeWH(10, 20);
3722 for (SkScalar sweep : {-720.f, -540.f, -360.f, 360.f, 432.f, 720.f}) {
3723 for (SkScalar start = -360.f; start <= 360.f; start += 1.f) {
3724 SkPath path;
3725 path.addArc(oval, start, sweep);
3726 // SkPath's interfaces for inserting and extracting ovals only allow contours
3727 // to start at multiples of 90 degrees.
3728 if (std::fmod(start, 90.f) == 0) {
3729 check_oval_arc(reporter, start, sweep, path);
3730 } else {
3731 REPORTER_ASSERT(reporter, !path.isOval(nullptr));
3732 }
3733 }
3734 // Test start angles that are nearly at valid oval start angles.
3735 for (float start : {-180.f, -90.f, 90.f, 180.f}) {
3736 for (float delta : {-SK_ScalarNearlyZero, SK_ScalarNearlyZero}) {
3737 SkPath path;
3738 path.addArc(oval, start + delta, sweep);
3739 check_oval_arc(reporter, start, sweep, path);
3740 }
3741 }
3742 }
3743}
3744
3745static void check_move(skiatest::Reporter* reporter, SkPath::RawIter* iter,
3746 SkScalar x0, SkScalar y0) {
3747 SkPoint pts[4];
3748 SkPath::Verb v = iter->next(pts);
3749 REPORTER_ASSERT(reporter, v == SkPath::kMove_Verb);
3750 REPORTER_ASSERT(reporter, pts[0].fX == x0);
3751 REPORTER_ASSERT(reporter, pts[0].fY == y0);
3752}
3753
3754static void check_line(skiatest::Reporter* reporter, SkPath::RawIter* iter,
3755 SkScalar x1, SkScalar y1) {
3756 SkPoint pts[4];
3757 SkPath::Verb v = iter->next(pts);
3758 REPORTER_ASSERT(reporter, v == SkPath::kLine_Verb);
3759 REPORTER_ASSERT(reporter, pts[1].fX == x1);
3760 REPORTER_ASSERT(reporter, pts[1].fY == y1);
3761}
3762
3763static void check_quad(skiatest::Reporter* reporter, SkPath::RawIter* iter,
3764 SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
3765 SkPoint pts[4];
3766 SkPath::Verb v = iter->next(pts);
3767 REPORTER_ASSERT(reporter, v == SkPath::kQuad_Verb);
3768 REPORTER_ASSERT(reporter, pts[1].fX == x1);
3769 REPORTER_ASSERT(reporter, pts[1].fY == y1);
3770 REPORTER_ASSERT(reporter, pts[2].fX == x2);
3771 REPORTER_ASSERT(reporter, pts[2].fY == y2);
3772}
3773
3774static void check_done(skiatest::Reporter* reporter, SkPath* p, SkPath::RawIter* iter) {
3775 SkPoint pts[4];
3776 SkPath::Verb v = iter->next(pts);
3777 REPORTER_ASSERT(reporter, v == SkPath::kDone_Verb);
3778}
3779
3780static void check_done_and_reset(skiatest::Reporter* reporter, SkPath* p, SkPath::RawIter* iter) {
3781 check_done(reporter, p, iter);
3782 p->reset();
3783}
3784
3785static void check_path_is_move_and_reset(skiatest::Reporter* reporter, SkPath* p,
3786 SkScalar x0, SkScalar y0) {
3787 SkPath::RawIter iter(*p);
3788 check_move(reporter, &iter, x0, y0);
3789 check_done_and_reset(reporter, p, &iter);
3790}
3791
3792static void check_path_is_line_and_reset(skiatest::Reporter* reporter, SkPath* p,
3793 SkScalar x1, SkScalar y1) {
3794 SkPath::RawIter iter(*p);
3795 check_move(reporter, &iter, 0, 0);
3796 check_line(reporter, &iter, x1, y1);
3797 check_done_and_reset(reporter, p, &iter);
3798}
3799
3800static void check_path_is_line(skiatest::Reporter* reporter, SkPath* p,
3801 SkScalar x1, SkScalar y1) {
3802 SkPath::RawIter iter(*p);
3803 check_move(reporter, &iter, 0, 0);
3804 check_line(reporter, &iter, x1, y1);
3805 check_done(reporter, p, &iter);
3806}
3807
3808static void check_path_is_line_pair_and_reset(skiatest::Reporter* reporter, SkPath* p,
3809 SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
3810 SkPath::RawIter iter(*p);
3811 check_move(reporter, &iter, 0, 0);
3812 check_line(reporter, &iter, x1, y1);
3813 check_line(reporter, &iter, x2, y2);
3814 check_done_and_reset(reporter, p, &iter);
3815}
3816
3817static void check_path_is_quad_and_reset(skiatest::Reporter* reporter, SkPath* p,
3818 SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
3819 SkPath::RawIter iter(*p);
3820 check_move(reporter, &iter, 0, 0);
3821 check_quad(reporter, &iter, x1, y1, x2, y2);
3822 check_done_and_reset(reporter, p, &iter);
3823}
3824
3825static bool nearly_equal(const SkRect& a, const SkRect& b) {
3826 return SkScalarNearlyEqual(a.fLeft, b.fLeft) &&
3827 SkScalarNearlyEqual(a.fTop, b.fTop) &&
3828 SkScalarNearlyEqual(a.fRight, b.fRight) &&
3829 SkScalarNearlyEqual(a.fBottom, b.fBottom);
3830}
3831
3832static void test_arcTo(skiatest::Reporter* reporter) {
3833 SkPath p;
3834 p.arcTo(0, 0, 1, 2, 1);
3835 check_path_is_line_and_reset(reporter, &p, 0, 0);
3836 p.arcTo(1, 2, 1, 2, 1);
3837 check_path_is_line_and_reset(reporter, &p, 1, 2);
3838 p.arcTo(1, 2, 3, 4, 0);
3839 check_path_is_line_and_reset(reporter, &p, 1, 2);
3840 p.arcTo(1, 2, 0, 0, 1);
3841 check_path_is_line_and_reset(reporter, &p, 1, 2);
3842 p.arcTo(1, 0, 1, 1, 1);
3843 SkPoint pt;
3844 REPORTER_ASSERT(reporter, p.getLastPt(&pt) && pt.fX == 1 && pt.fY == 1);
3845 p.reset();
3846 p.arcTo(1, 0, 1, -1, 1);
3847 REPORTER_ASSERT(reporter, p.getLastPt(&pt) && pt.fX == 1 && pt.fY == -1);
3848 p.reset();
3849 SkRect oval = {1, 2, 3, 4};
3850 p.arcTo(oval, 0, 0, true);
3851 check_path_is_move_and_reset(reporter, &p, oval.fRight, oval.centerY());
3852 p.arcTo(oval, 0, 0, false);
3853 check_path_is_move_and_reset(reporter, &p, oval.fRight, oval.centerY());
3854 p.arcTo(oval, 360, 0, true);
3855 check_path_is_move_and_reset(reporter, &p, oval.fRight, oval.centerY());
3856 p.arcTo(oval, 360, 0, false);
3857 check_path_is_move_and_reset(reporter, &p, oval.fRight, oval.centerY());
3858
3859 for (float sweep = 359, delta = 0.5f; sweep != (float) (sweep + delta); ) {
3860 p.arcTo(oval, 0, sweep, false);
3861 REPORTER_ASSERT(reporter, nearly_equal(p.getBounds(), oval));
3862 sweep += delta;
3863 delta /= 2;
3864 }
3865 for (float sweep = 361, delta = 0.5f; sweep != (float) (sweep - delta);) {
3866 p.arcTo(oval, 0, sweep, false);
3867 REPORTER_ASSERT(reporter, nearly_equal(p.getBounds(), oval));
3868 sweep -= delta;
3869 delta /= 2;
3870 }
3871 SkRect noOvalWidth = {1, 2, 0, 3};
3872 p.reset();
3873 p.arcTo(noOvalWidth, 0, 360, false);
3874 REPORTER_ASSERT(reporter, p.isEmpty());
3875
3876 SkRect noOvalHeight = {1, 2, 3, 1};
3877 p.reset();
3878 p.arcTo(noOvalHeight, 0, 360, false);
3879 REPORTER_ASSERT(reporter, p.isEmpty());
3880}
3881
3882static void test_addPath(skiatest::Reporter* reporter) {
3883 SkPath p, q;
3884 p.lineTo(1, 2);
3885 q.moveTo(4, 4);
3886 q.lineTo(7, 8);
3887 q.conicTo(8, 7, 6, 5, 0.5f);
3888 q.quadTo(6, 7, 8, 6);
3889 q.cubicTo(5, 6, 7, 8, 7, 5);
3890 q.close();
3891 p.addPath(q, -4, -4);
3892 SkRect expected = {0, 0, 4, 4};
3893 REPORTER_ASSERT(reporter, p.getBounds() == expected);
3894 p.reset();
3895 p.reverseAddPath(q);
3896 SkRect reverseExpected = {4, 4, 8, 8};
3897 REPORTER_ASSERT(reporter, p.getBounds() == reverseExpected);
3898}
3899
3900static void test_addPathMode(skiatest::Reporter* reporter, bool explicitMoveTo, bool extend) {
3901 SkPath p, q;
3902 if (explicitMoveTo) {
3903 p.moveTo(1, 1);
3904 }
3905 p.lineTo(1, 2);
3906 if (explicitMoveTo) {
3907 q.moveTo(2, 1);
3908 }
3909 q.lineTo(2, 2);
3910 p.addPath(q, extend ? SkPath::kExtend_AddPathMode : SkPath::kAppend_AddPathMode);
3911 uint8_t verbs[4];
3912 int verbcount = p.getVerbs(verbs, 4);
3913 REPORTER_ASSERT(reporter, verbcount == 4);
3914 REPORTER_ASSERT(reporter, verbs[0] == SkPath::kMove_Verb);
3915 REPORTER_ASSERT(reporter, verbs[1] == SkPath::kLine_Verb);
3916 REPORTER_ASSERT(reporter, verbs[2] == (extend ? SkPath::kLine_Verb : SkPath::kMove_Verb));
3917 REPORTER_ASSERT(reporter, verbs[3] == SkPath::kLine_Verb);
3918}
3919
3920static void test_extendClosedPath(skiatest::Reporter* reporter) {
3921 SkPath p, q;
3922 p.moveTo(1, 1);
3923 p.lineTo(1, 2);
3924 p.lineTo(2, 2);
3925 p.close();
3926 q.moveTo(2, 1);
3927 q.lineTo(2, 3);
3928 p.addPath(q, SkPath::kExtend_AddPathMode);
3929 uint8_t verbs[7];
3930 int verbcount = p.getVerbs(verbs, 7);
3931 REPORTER_ASSERT(reporter, verbcount == 7);
3932 REPORTER_ASSERT(reporter, verbs[0] == SkPath::kMove_Verb);
3933 REPORTER_ASSERT(reporter, verbs[1] == SkPath::kLine_Verb);
3934 REPORTER_ASSERT(reporter, verbs[2] == SkPath::kLine_Verb);
3935 REPORTER_ASSERT(reporter, verbs[3] == SkPath::kClose_Verb);
3936 REPORTER_ASSERT(reporter, verbs[4] == SkPath::kMove_Verb);
3937 REPORTER_ASSERT(reporter, verbs[5] == SkPath::kLine_Verb);
3938 REPORTER_ASSERT(reporter, verbs[6] == SkPath::kLine_Verb);
3939
3940 SkPoint pt;
3941 REPORTER_ASSERT(reporter, p.getLastPt(&pt));
3942 REPORTER_ASSERT(reporter, pt == SkPoint::Make(2, 3));
3943 REPORTER_ASSERT(reporter, p.getPoint(3) == SkPoint::Make(1, 1));
3944}
3945
3946static void test_addEmptyPath(skiatest::Reporter* reporter, SkPath::AddPathMode mode) {
3947 SkPath p, q, r;
3948 // case 1: dst is empty
3949 p.moveTo(2, 1);
3950 p.lineTo(2, 3);
3951 q.addPath(p, mode);
3952 REPORTER_ASSERT(reporter, q == p);
3953 // case 2: src is empty
3954 p.addPath(r, mode);
3955 REPORTER_ASSERT(reporter, q == p);
3956 // case 3: src and dst are empty
3957 q.reset();
3958 q.addPath(r, mode);
3959 REPORTER_ASSERT(reporter, q.isEmpty());
3960}
3961
3962static void test_conicTo_special_case(skiatest::Reporter* reporter) {
3963 SkPath p;
3964 p.conicTo(1, 2, 3, 4, -1);
3965 check_path_is_line_and_reset(reporter, &p, 3, 4);
3966 p.conicTo(1, 2, 3, 4, SK_ScalarInfinity);
3967 check_path_is_line_pair_and_reset(reporter, &p, 1, 2, 3, 4);
3968 p.conicTo(1, 2, 3, 4, 1);
3969 check_path_is_quad_and_reset(reporter, &p, 1, 2, 3, 4);
3970}
3971
3972static void test_get_point(skiatest::Reporter* reporter) {
3973 SkPath p;
3974 SkPoint pt = p.getPoint(0);
3975 REPORTER_ASSERT(reporter, pt == SkPoint::Make(0, 0));
3976 REPORTER_ASSERT(reporter, !p.getLastPt(nullptr));
3977 REPORTER_ASSERT(reporter, !p.getLastPt(&pt) && pt == SkPoint::Make(0, 0));
3978 p.setLastPt(10, 10);
3979 pt = p.getPoint(0);
3980 REPORTER_ASSERT(reporter, pt == SkPoint::Make(10, 10));
3981 REPORTER_ASSERT(reporter, p.getLastPt(nullptr));
3982 p.rMoveTo(10, 10);
3983 REPORTER_ASSERT(reporter, p.getLastPt(&pt) && pt == SkPoint::Make(20, 20));
3984}
3985
3986static void test_contains(skiatest::Reporter* reporter) {
3987 SkPath p;
3988 p.moveTo(SkBits2Float(0xe085e7b1), SkBits2Float(0x5f512c00)); // -7.7191e+19f, 1.50724e+19f
3989 p.conicTo(SkBits2Float(0xdfdaa221), SkBits2Float(0x5eaac338), SkBits2Float(0x60342f13), SkBits2Float(0xdf0cbb58), SkBits2Float(0x3f3504f3)); // -3.15084e+19f, 6.15237e+18f, 5.19345e+19f, -1.01408e+19f, 0.707107f
3990 p.conicTo(SkBits2Float(0x60ead799), SkBits2Float(0xdfb76c24), SkBits2Float(0x609b9872), SkBits2Float(0xdf730de8), SkBits2Float(0x3f3504f4)); // 1.35377e+20f, -2.6434e+19f, 8.96947e+19f, -1.75139e+19f, 0.707107f
3991 p.lineTo(SkBits2Float(0x609b9872), SkBits2Float(0xdf730de8)); // 8.96947e+19f, -1.75139e+19f
3992 p.conicTo(SkBits2Float(0x6018b296), SkBits2Float(0xdeee870d), SkBits2Float(0xe008cd8e), SkBits2Float(0x5ed5b2db), SkBits2Float(0x3f3504f3)); // 4.40121e+19f, -8.59386e+18f, -3.94308e+19f, 7.69931e+18f, 0.707107f
3993 p.conicTo(SkBits2Float(0xe0d526d9), SkBits2Float(0x5fa67b31), SkBits2Float(0xe085e7b2), SkBits2Float(0x5f512c01), SkBits2Float(0x3f3504f3)); // -1.22874e+20f, 2.39925e+19f, -7.7191e+19f, 1.50724e+19f, 0.707107f
3994 // this may return true or false, depending on the platform's numerics, but it should not crash
3995 (void) p.contains(-77.2027664f, 15.3066053f);
3996
3997 p.reset();
3998 p.setFillType(SkPath::kInverseWinding_FillType);
3999 REPORTER_ASSERT(reporter, p.contains(0, 0));
4000 p.setFillType(SkPath::kWinding_FillType);
4001 REPORTER_ASSERT(reporter, !p.contains(0, 0));
4002 p.moveTo(4, 4);
4003 p.lineTo(6, 8);
4004 p.lineTo(8, 4);
4005 // test on edge
4006 REPORTER_ASSERT(reporter, p.contains(6, 4));
4007 REPORTER_ASSERT(reporter, p.contains(5, 6));
4008 REPORTER_ASSERT(reporter, p.contains(7, 6));
4009 // test quick reject
4010 REPORTER_ASSERT(reporter, !p.contains(4, 0));
4011 REPORTER_ASSERT(reporter, !p.contains(0, 4));
4012 REPORTER_ASSERT(reporter, !p.contains(4, 10));
4013 REPORTER_ASSERT(reporter, !p.contains(10, 4));
4014 // test various crossings in x
4015 REPORTER_ASSERT(reporter, !p.contains(5, 7));
4016 REPORTER_ASSERT(reporter, p.contains(6, 7));
4017 REPORTER_ASSERT(reporter, !p.contains(7, 7));
4018 p.reset();
4019 p.moveTo(4, 4);
4020 p.lineTo(8, 6);
4021 p.lineTo(4, 8);
4022 // test on edge
4023 REPORTER_ASSERT(reporter, p.contains(4, 6));
4024 REPORTER_ASSERT(reporter, p.contains(6, 5));
4025 REPORTER_ASSERT(reporter, p.contains(6, 7));
4026 // test various crossings in y
4027 REPORTER_ASSERT(reporter, !p.contains(7, 5));
4028 REPORTER_ASSERT(reporter, p.contains(7, 6));
4029 REPORTER_ASSERT(reporter, !p.contains(7, 7));
4030 p.reset();
4031 p.moveTo(4, 4);
4032 p.lineTo(8, 4);
4033 p.lineTo(8, 8);
4034 p.lineTo(4, 8);
4035 // test on vertices
4036 REPORTER_ASSERT(reporter, p.contains(4, 4));
4037 REPORTER_ASSERT(reporter, p.contains(8, 4));
4038 REPORTER_ASSERT(reporter, p.contains(8, 8));
4039 REPORTER_ASSERT(reporter, p.contains(4, 8));
4040 p.reset();
4041 p.moveTo(4, 4);
4042 p.lineTo(6, 8);
4043 p.lineTo(2, 8);
4044 // test on edge
4045 REPORTER_ASSERT(reporter, p.contains(5, 6));
4046 REPORTER_ASSERT(reporter, p.contains(4, 8));
4047 REPORTER_ASSERT(reporter, p.contains(3, 6));
4048 p.reset();
4049 p.moveTo(4, 4);
4050 p.lineTo(0, 6);
4051 p.lineTo(4, 8);
4052 // test on edge
4053 REPORTER_ASSERT(reporter, p.contains(2, 5));
4054 REPORTER_ASSERT(reporter, p.contains(2, 7));
4055 REPORTER_ASSERT(reporter, p.contains(4, 6));
4056 // test canceling coincident edge (a smaller triangle is coincident with a larger one)
4057 p.reset();
4058 p.moveTo(4, 0);
4059 p.lineTo(6, 4);
4060 p.lineTo(2, 4);
4061 p.moveTo(4, 0);
4062 p.lineTo(0, 8);
4063 p.lineTo(8, 8);
4064 REPORTER_ASSERT(reporter, !p.contains(1, 2));
4065 REPORTER_ASSERT(reporter, !p.contains(3, 2));
4066 REPORTER_ASSERT(reporter, !p.contains(4, 0));
4067 REPORTER_ASSERT(reporter, p.contains(4, 4));
4068
4069 // test quads
4070 p.reset();
4071 p.moveTo(4, 4);
4072 p.quadTo(6, 6, 8, 8);
4073 p.quadTo(6, 8, 4, 8);
4074 p.quadTo(4, 6, 4, 4);
4075 REPORTER_ASSERT(reporter, p.contains(5, 6));
4076 REPORTER_ASSERT(reporter, !p.contains(6, 5));
4077 // test quad edge
4078 REPORTER_ASSERT(reporter, p.contains(5, 5));
4079 REPORTER_ASSERT(reporter, p.contains(5, 8));
4080 REPORTER_ASSERT(reporter, p.contains(4, 5));
4081 // test quad endpoints
4082 REPORTER_ASSERT(reporter, p.contains(4, 4));
4083 REPORTER_ASSERT(reporter, p.contains(8, 8));
4084 REPORTER_ASSERT(reporter, p.contains(4, 8));
4085
4086 p.reset();
4087 const SkPoint qPts[] = {{6, 6}, {8, 8}, {6, 8}, {4, 8}, {4, 6}, {4, 4}, {6, 6}};
4088 p.moveTo(qPts[0]);
4089 for (int index = 1; index < (int) SK_ARRAY_COUNT(qPts); index += 2) {
4090 p.quadTo(qPts[index], qPts[index + 1]);
4091 }
4092 REPORTER_ASSERT(reporter, p.contains(5, 6));
4093 REPORTER_ASSERT(reporter, !p.contains(6, 5));
4094 // test quad edge
4095 SkPoint halfway;
4096 for (int index = 0; index < (int) SK_ARRAY_COUNT(qPts) - 2; index += 2) {
4097 SkEvalQuadAt(&qPts[index], 0.5f, &halfway, nullptr);
4098 REPORTER_ASSERT(reporter, p.contains(halfway.fX, halfway.fY));
4099 }
4100
4101 // test conics
4102 p.reset();
4103 const SkPoint kPts[] = {{4, 4}, {6, 6}, {8, 8}, {6, 8}, {4, 8}, {4, 6}, {4, 4}};
4104 p.moveTo(kPts[0]);
4105 for (int index = 1; index < (int) SK_ARRAY_COUNT(kPts); index += 2) {
4106 p.conicTo(kPts[index], kPts[index + 1], 0.5f);
4107 }
4108 REPORTER_ASSERT(reporter, p.contains(5, 6));
4109 REPORTER_ASSERT(reporter, !p.contains(6, 5));
4110 // test conic edge
4111 for (int index = 0; index < (int) SK_ARRAY_COUNT(kPts) - 2; index += 2) {
4112 SkConic conic(&kPts[index], 0.5f);
4113 halfway = conic.evalAt(0.5f);
4114 REPORTER_ASSERT(reporter, p.contains(halfway.fX, halfway.fY));
4115 }
4116 // test conic end points
4117 REPORTER_ASSERT(reporter, p.contains(4, 4));
4118 REPORTER_ASSERT(reporter, p.contains(8, 8));
4119 REPORTER_ASSERT(reporter, p.contains(4, 8));
4120
4121 // test cubics
4122 SkPoint pts[] = {{5, 4}, {6, 5}, {7, 6}, {6, 6}, {4, 6}, {5, 7}, {5, 5}, {5, 4}, {6, 5}, {7, 6}};
4123 for (int i = 0; i < 3; ++i) {
4124 p.reset();
4125 p.setFillType(SkPath::kEvenOdd_FillType);
4126 p.moveTo(pts[i].fX, pts[i].fY);
4127 p.cubicTo(pts[i + 1].fX, pts[i + 1].fY, pts[i + 2].fX, pts[i + 2].fY, pts[i + 3].fX, pts[i + 3].fY);
4128 p.cubicTo(pts[i + 4].fX, pts[i + 4].fY, pts[i + 5].fX, pts[i + 5].fY, pts[i + 6].fX, pts[i + 6].fY);
4129 p.close();
4130 REPORTER_ASSERT(reporter, p.contains(5.5f, 5.5f));
4131 REPORTER_ASSERT(reporter, !p.contains(4.5f, 5.5f));
4132 // test cubic edge
4133 SkEvalCubicAt(&pts[i], 0.5f, &halfway, nullptr, nullptr);
4134 REPORTER_ASSERT(reporter, p.contains(halfway.fX, halfway.fY));
4135 SkEvalCubicAt(&pts[i + 3], 0.5f, &halfway, nullptr, nullptr);
4136 REPORTER_ASSERT(reporter, p.contains(halfway.fX, halfway.fY));
4137 // test cubic end points
4138 REPORTER_ASSERT(reporter, p.contains(pts[i].fX, pts[i].fY));
4139 REPORTER_ASSERT(reporter, p.contains(pts[i + 3].fX, pts[i + 3].fY));
4140 REPORTER_ASSERT(reporter, p.contains(pts[i + 6].fX, pts[i + 6].fY));
4141 }
4142}
4143
4144class PathRefTest_Private {
4145public:
4146 static void TestPathRef(skiatest::Reporter* reporter) {
4147 static const int kRepeatCnt = 10;
4148
4149 sk_sp<SkPathRef> pathRef(new SkPathRef);
4150
4151 SkPathRef::Editor ed(&pathRef);
4152
4153 {
4154 ed.growForRepeatedVerb(SkPath::kMove_Verb, kRepeatCnt);
4155 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countVerbs());
4156 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countPoints());
4157 REPORTER_ASSERT(reporter, 0 == pathRef->getSegmentMasks());
4158 for (int i = 0; i < kRepeatCnt; ++i) {
4159 REPORTER_ASSERT(reporter, SkPath::kMove_Verb == pathRef->atVerb(i));
4160 }
4161 ed.resetToSize(0, 0, 0);
4162 }
4163
4164 {
4165 ed.growForRepeatedVerb(SkPath::kLine_Verb, kRepeatCnt);
4166 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countVerbs());
4167 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countPoints());
4168 REPORTER_ASSERT(reporter, SkPath::kLine_SegmentMask == pathRef->getSegmentMasks());
4169 for (int i = 0; i < kRepeatCnt; ++i) {
4170 REPORTER_ASSERT(reporter, SkPath::kLine_Verb == pathRef->atVerb(i));
4171 }
4172 ed.resetToSize(0, 0, 0);
4173 }
4174
4175 {
4176 ed.growForRepeatedVerb(SkPath::kQuad_Verb, kRepeatCnt);
4177 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countVerbs());
4178 REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef->countPoints());
4179 REPORTER_ASSERT(reporter, SkPath::kQuad_SegmentMask == pathRef->getSegmentMasks());
4180 for (int i = 0; i < kRepeatCnt; ++i) {
4181 REPORTER_ASSERT(reporter, SkPath::kQuad_Verb == pathRef->atVerb(i));
4182 }
4183 ed.resetToSize(0, 0, 0);
4184 }
4185
4186 {
4187 SkScalar* weights = nullptr;
4188 ed.growForRepeatedVerb(SkPath::kConic_Verb, kRepeatCnt, &weights);
4189 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countVerbs());
4190 REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef->countPoints());
4191 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countWeights());
4192 REPORTER_ASSERT(reporter, SkPath::kConic_SegmentMask == pathRef->getSegmentMasks());
4193 REPORTER_ASSERT(reporter, weights);
4194 for (int i = 0; i < kRepeatCnt; ++i) {
4195 REPORTER_ASSERT(reporter, SkPath::kConic_Verb == pathRef->atVerb(i));
4196 }
4197 ed.resetToSize(0, 0, 0);
4198 }
4199
4200 {
4201 ed.growForRepeatedVerb(SkPath::kCubic_Verb, kRepeatCnt);
4202 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countVerbs());
4203 REPORTER_ASSERT(reporter, 3*kRepeatCnt == pathRef->countPoints());
4204 REPORTER_ASSERT(reporter, SkPath::kCubic_SegmentMask == pathRef->getSegmentMasks());
4205 for (int i = 0; i < kRepeatCnt; ++i) {
4206 REPORTER_ASSERT(reporter, SkPath::kCubic_Verb == pathRef->atVerb(i));
4207 }
4208 ed.resetToSize(0, 0, 0);
4209 }
4210 }
4211};
4212
4213static void test_operatorEqual(skiatest::Reporter* reporter) {
4214 SkPath a;
4215 SkPath b;
4216 REPORTER_ASSERT(reporter, a == a);
4217 REPORTER_ASSERT(reporter, a == b);
4218 a.setFillType(SkPath::kInverseWinding_FillType);
4219 REPORTER_ASSERT(reporter, a != b);
4220 a.reset();
4221 REPORTER_ASSERT(reporter, a == b);
4222 a.lineTo(1, 1);
4223 REPORTER_ASSERT(reporter, a != b);
4224 a.reset();
4225 REPORTER_ASSERT(reporter, a == b);
4226 a.lineTo(1, 1);
4227 b.lineTo(1, 2);
4228 REPORTER_ASSERT(reporter, a != b);
4229 a.reset();
4230 a.lineTo(1, 2);
4231 REPORTER_ASSERT(reporter, a == b);
4232}
4233
4234static void compare_dump(skiatest::Reporter* reporter, const SkPath& path, bool force,
4235 bool dumpAsHex, const char* str) {
4236 SkDynamicMemoryWStream wStream;
4237 path.dump(&wStream, force, dumpAsHex);
4238 sk_sp<SkData> data = wStream.detachAsData();
4239 REPORTER_ASSERT(reporter, data->size() == strlen(str));
4240 if (strlen(str) > 0) {
4241 REPORTER_ASSERT(reporter, !memcmp(data->data(), str, strlen(str)));
4242 } else {
4243 REPORTER_ASSERT(reporter, data->data() == nullptr || !memcmp(data->data(), str, strlen(str)));
4244 }
4245}
4246
4247static void test_dump(skiatest::Reporter* reporter) {
4248 SkPath p;
4249 compare_dump(reporter, p, false, false, "path.setFillType(SkPath::kWinding_FillType);\n");
4250 compare_dump(reporter, p, true, false, "path.setFillType(SkPath::kWinding_FillType);\n");
4251 p.moveTo(1, 2);
4252 p.lineTo(3, 4);
4253 compare_dump(reporter, p, false, false, "path.setFillType(SkPath::kWinding_FillType);\n"
4254 "path.moveTo(1, 2);\n"
4255 "path.lineTo(3, 4);\n");
4256 compare_dump(reporter, p, true, false, "path.setFillType(SkPath::kWinding_FillType);\n"
4257 "path.moveTo(1, 2);\n"
4258 "path.lineTo(3, 4);\n"
4259 "path.lineTo(1, 2);\n"
4260 "path.close();\n");
4261 p.reset();
4262 p.setFillType(SkPath::kEvenOdd_FillType);
4263 p.moveTo(1, 2);
4264 p.quadTo(3, 4, 5, 6);
4265 compare_dump(reporter, p, false, false, "path.setFillType(SkPath::kEvenOdd_FillType);\n"
4266 "path.moveTo(1, 2);\n"
4267 "path.quadTo(3, 4, 5, 6);\n");
4268 p.reset();
4269 p.setFillType(SkPath::kInverseWinding_FillType);
4270 p.moveTo(1, 2);
4271 p.conicTo(3, 4, 5, 6, 0.5f);
4272 compare_dump(reporter, p, false, false, "path.setFillType(SkPath::kInverseWinding_FillType);\n"
4273 "path.moveTo(1, 2);\n"
4274 "path.conicTo(3, 4, 5, 6, 0.5f);\n");
4275 p.reset();
4276 p.setFillType(SkPath::kInverseEvenOdd_FillType);
4277 p.moveTo(1, 2);
4278 p.cubicTo(3, 4, 5, 6, 7, 8);
4279 compare_dump(reporter, p, false, false, "path.setFillType(SkPath::kInverseEvenOdd_FillType);\n"
4280 "path.moveTo(1, 2);\n"
4281 "path.cubicTo(3, 4, 5, 6, 7, 8);\n");
4282 p.reset();
4283 p.setFillType(SkPath::kWinding_FillType);
4284 p.moveTo(1, 2);
4285 p.lineTo(3, 4);
4286 compare_dump(reporter, p, false, true,
4287 "path.setFillType(SkPath::kWinding_FillType);\n"
4288 "path.moveTo(SkBits2Float(0x3f800000), SkBits2Float(0x40000000)); // 1, 2\n"
4289 "path.lineTo(SkBits2Float(0x40400000), SkBits2Float(0x40800000)); // 3, 4\n");
4290 p.reset();
4291 p.moveTo(SkBits2Float(0x3f800000), SkBits2Float(0x40000000));
4292 p.lineTo(SkBits2Float(0x40400000), SkBits2Float(0x40800000));
4293 compare_dump(reporter, p, false, false, "path.setFillType(SkPath::kWinding_FillType);\n"
4294 "path.moveTo(1, 2);\n"
4295 "path.lineTo(3, 4);\n");
4296}
4297
4298namespace {
4299
4300class ChangeListener : public SkPathRef::GenIDChangeListener {
4301public:
4302 ChangeListener(bool *changed) : fChanged(changed) { *fChanged = false; }
4303 ~ChangeListener() override {}
4304 void onChange() override {
4305 *fChanged = true;
4306 }
4307private:
4308 bool* fChanged;
4309};
4310
4311}
4312
4313class PathTest_Private {
4314public:
4315 static void TestPathTo(skiatest::Reporter* reporter) {
4316 SkPath p, q;
4317 p.lineTo(4, 4);
4318 p.reversePathTo(q);
4319 check_path_is_line(reporter, &p, 4, 4);
4320 q.moveTo(-4, -4);
4321 p.reversePathTo(q);
4322 check_path_is_line(reporter, &p, 4, 4);
4323 q.lineTo(7, 8);
4324 q.conicTo(8, 7, 6, 5, 0.5f);
4325 q.quadTo(6, 7, 8, 6);
4326 q.cubicTo(5, 6, 7, 8, 7, 5);
4327 q.close();
4328 p.reversePathTo(q);
4329 SkRect reverseExpected = {-4, -4, 8, 8};
4330 REPORTER_ASSERT(reporter, p.getBounds() == reverseExpected);
4331 }
4332
4333 static void TestPathrefListeners(skiatest::Reporter* reporter) {
4334 SkPath p;
4335
4336 bool changed = false;
4337 p.moveTo(0, 0);
4338
4339 // Check that listener is notified on moveTo().
4340
4341 SkPathPriv::AddGenIDChangeListener(p, new ChangeListener(&changed));
4342 REPORTER_ASSERT(reporter, !changed);
4343 p.moveTo(10, 0);
4344 REPORTER_ASSERT(reporter, changed);
4345
4346 // Check that listener is notified on lineTo().
4347 SkPathPriv::AddGenIDChangeListener(p, new ChangeListener(&changed));
4348 REPORTER_ASSERT(reporter, !changed);
4349 p.lineTo(20, 0);
4350 REPORTER_ASSERT(reporter, changed);
4351
4352 // Check that listener is notified on reset().
4353 SkPathPriv::AddGenIDChangeListener(p, new ChangeListener(&changed));
4354 REPORTER_ASSERT(reporter, !changed);
4355 p.reset();
4356 REPORTER_ASSERT(reporter, changed);
4357
4358 p.moveTo(0, 0);
4359
4360 // Check that listener is notified on rewind().
4361 SkPathPriv::AddGenIDChangeListener(p, new ChangeListener(&changed));
4362 REPORTER_ASSERT(reporter, !changed);
4363 p.rewind();
4364 REPORTER_ASSERT(reporter, changed);
4365
4366 // Check that listener is notified when pathref is deleted.
4367 {
4368 SkPath q;
4369 q.moveTo(10, 10);
4370 SkPathPriv::AddGenIDChangeListener(q, new ChangeListener(&changed));
4371 REPORTER_ASSERT(reporter, !changed);
4372 }
4373 // q went out of scope.
4374 REPORTER_ASSERT(reporter, changed);
4375 }
4376};
4377
4378static void test_crbug_629455(skiatest::Reporter* reporter) {
4379 SkPath path;
4380 path.moveTo(0, 0);
4381 path.cubicTo(SkBits2Float(0xcdcdcd00), SkBits2Float(0xcdcdcdcd),
4382 SkBits2Float(0xcdcdcdcd), SkBits2Float(0xcdcdcdcd),
4383 SkBits2Float(0x423fcdcd), SkBits2Float(0x40ed9341));
4384// AKA: cubicTo(-4.31596e+08f, -4.31602e+08f, -4.31602e+08f, -4.31602e+08f, 47.951f, 7.42423f);
4385 path.lineTo(0, 0);
Yuqian Lif13beef2017-09-14 17:15:04 -04004386 test_draw_AA_path(100, 100, path);
Yuqian Li3154a532017-09-06 13:33:30 -04004387}
4388
4389static void test_fuzz_crbug_662952(skiatest::Reporter* reporter) {
4390 SkPath path;
4391 path.moveTo(SkBits2Float(0x4109999a), SkBits2Float(0x411c0000)); // 8.6f, 9.75f
4392 path.lineTo(SkBits2Float(0x410a6666), SkBits2Float(0x411c0000)); // 8.65f, 9.75f
4393 path.lineTo(SkBits2Float(0x410a6666), SkBits2Float(0x411e6666)); // 8.65f, 9.9f
4394 path.lineTo(SkBits2Float(0x4109999a), SkBits2Float(0x411e6666)); // 8.6f, 9.9f
4395 path.lineTo(SkBits2Float(0x4109999a), SkBits2Float(0x411c0000)); // 8.6f, 9.75f
4396 path.close();
4397
4398 auto surface = SkSurface::MakeRasterN32Premul(100, 100);
4399 SkPaint paint;
4400 paint.setAntiAlias(true);
4401 surface->getCanvas()->clipPath(path, true);
4402 surface->getCanvas()->drawRect(SkRect::MakeWH(100, 100), paint);
4403}
4404
4405static void test_path_crbugskia6003() {
4406 auto surface(SkSurface::MakeRasterN32Premul(500, 500));
4407 SkCanvas* canvas = surface->getCanvas();
4408 SkPaint paint;
4409 paint.setAntiAlias(true);
4410 SkPath path;
4411 path.moveTo(SkBits2Float(0x4325e666), SkBits2Float(0x42a1999a)); // 165.9f, 80.8f
4412 path.lineTo(SkBits2Float(0x4325e666), SkBits2Float(0x42a2999a)); // 165.9f, 81.3f
4413 path.lineTo(SkBits2Float(0x4325b333), SkBits2Float(0x42a2999a)); // 165.7f, 81.3f
4414 path.lineTo(SkBits2Float(0x4325b333), SkBits2Float(0x42a16666)); // 165.7f, 80.7f
4415 path.lineTo(SkBits2Float(0x4325b333), SkBits2Float(0x429f6666)); // 165.7f, 79.7f
4416 // 165.7f, 79.7f, 165.8f, 79.7f, 165.8f, 79.7f
4417 path.cubicTo(SkBits2Float(0x4325b333), SkBits2Float(0x429f6666), SkBits2Float(0x4325cccc),
4418 SkBits2Float(0x429f6666), SkBits2Float(0x4325cccc), SkBits2Float(0x429f6666));
4419 // 165.8f, 79.7f, 165.8f, 79.7f, 165.9f, 79.7f
4420 path.cubicTo(SkBits2Float(0x4325cccc), SkBits2Float(0x429f6666), SkBits2Float(0x4325cccc),
4421 SkBits2Float(0x429f6666), SkBits2Float(0x4325e666), SkBits2Float(0x429f6666));
4422 path.lineTo(SkBits2Float(0x4325e666), SkBits2Float(0x42a1999a)); // 165.9f, 80.8f
4423 path.close();
4424 canvas->clipPath(path, true);
4425 canvas->drawRect(SkRect::MakeWH(500, 500), paint);
4426}
4427
4428static void test_fuzz_crbug_662730(skiatest::Reporter* reporter) {
4429 SkPath path;
4430 path.moveTo(SkBits2Float(0x00000000), SkBits2Float(0x00000000)); // 0, 0
4431 path.lineTo(SkBits2Float(0xd5394437), SkBits2Float(0x37373737)); // -1.2731e+13f, 1.09205e-05f
4432 path.lineTo(SkBits2Float(0x37373737), SkBits2Float(0x37373737)); // 1.09205e-05f, 1.09205e-05f
4433 path.lineTo(SkBits2Float(0x37373745), SkBits2Float(0x0001b800)); // 1.09205e-05f, 1.57842e-40f
4434 path.close();
Yuqian Lif13beef2017-09-14 17:15:04 -04004435 test_draw_AA_path(100, 100, path);
Yuqian Li3154a532017-09-06 13:33:30 -04004436}
4437
4438#if !defined(SK_SUPPORT_LEGACY_DELTA_AA)
4439static void test_skbug_6947() {
4440 SkPath path;
4441 SkPoint points[] =
4442 {{125.126022f, -0.499872506f}, {125.288895f, -0.499338806f},
4443 {125.299316f, -0.499290764f}, {126.294594f, 0.505449712f},
4444 {125.999992f, 62.5047531f}, {124.0f, 62.4980202f},
4445 {124.122749f, 0.498142242f}, {125.126022f, -0.499872506f},
4446 {125.119476f, 1.50011659f}, {125.122749f, 0.50012207f},
4447 {126.122749f, 0.502101898f}, {126.0f, 62.5019798f},
4448 {125.0f, 62.5f}, {124.000008f, 62.4952469f},
4449 {124.294609f, 0.495946467f}, {125.294601f, 0.50069809f},
4450 {125.289886f, 1.50068688f}, {125.282349f, 1.50065041f},
4451 {125.119476f, 1.50011659f}};
4452 constexpr SkPath::Verb kMove = SkPath::kMove_Verb;
4453 constexpr SkPath::Verb kLine = SkPath::kLine_Verb;
4454 constexpr SkPath::Verb kClose = SkPath::kClose_Verb;
4455 SkPath::Verb verbs[] = {kMove, kLine, kLine, kLine, kLine, kLine, kLine, kLine, kClose,
4456 kMove, kLine, kLine, kLine, kLine, kLine, kLine, kLine, kLine, kLine, kLine, kClose};
4457 int pointIndex = 0;
4458 for(auto verb : verbs) {
4459 switch (verb) {
4460 case kMove:
4461 path.moveTo(points[pointIndex++]);
4462 break;
4463 case kLine:
4464 path.lineTo(points[pointIndex++]);
4465 break;
4466 case kClose:
4467 default:
4468 path.close();
4469 break;
4470 }
4471 }
Yuqian Lif13beef2017-09-14 17:15:04 -04004472 test_draw_AA_path(250, 125, path);
Yuqian Li3154a532017-09-06 13:33:30 -04004473}
Yuqian Lia81b6262017-09-06 17:10:05 -04004474
4475static void test_skbug_7015() {
4476 SkPath path;
4477 path.setFillType(SkPath::kWinding_FillType);
4478 path.moveTo(SkBits2Float(0x4388c000), SkBits2Float(0x43947c08)); // 273.5f, 296.969f
4479 path.lineTo(SkBits2Float(0x4386c000), SkBits2Float(0x43947c08)); // 269.5f, 296.969f
4480 // 269.297f, 292.172f, 273.695f, 292.172f, 273.5f, 296.969f
4481 path.cubicTo(SkBits2Float(0x4386a604), SkBits2Float(0x43921604),
4482 SkBits2Float(0x4388d8f6), SkBits2Float(0x43921604),
4483 SkBits2Float(0x4388c000), SkBits2Float(0x43947c08));
4484 path.close();
Yuqian Lif13beef2017-09-14 17:15:04 -04004485 test_draw_AA_path(500, 500, path);
Yuqian Lia81b6262017-09-06 17:10:05 -04004486}
4487
Yuqian Li3154a532017-09-06 13:33:30 -04004488#endif
4489
4490static void test_interp(skiatest::Reporter* reporter) {
4491 SkPath p1, p2, out;
4492 REPORTER_ASSERT(reporter, p1.isInterpolatable(p2));
4493 REPORTER_ASSERT(reporter, p1.interpolate(p2, 0, &out));
4494 REPORTER_ASSERT(reporter, p1 == out);
4495 REPORTER_ASSERT(reporter, p1.interpolate(p2, 1, &out));
4496 REPORTER_ASSERT(reporter, p1 == out);
4497 p1.moveTo(0, 2);
4498 p1.lineTo(0, 4);
4499 REPORTER_ASSERT(reporter, !p1.isInterpolatable(p2));
4500 REPORTER_ASSERT(reporter, !p1.interpolate(p2, 1, &out));
4501 p2.moveTo(6, 0);
4502 p2.lineTo(8, 0);
4503 REPORTER_ASSERT(reporter, p1.isInterpolatable(p2));
4504 REPORTER_ASSERT(reporter, p1.interpolate(p2, 0, &out));
4505 REPORTER_ASSERT(reporter, p2 == out);
4506 REPORTER_ASSERT(reporter, p1.interpolate(p2, 1, &out));
4507 REPORTER_ASSERT(reporter, p1 == out);
4508 REPORTER_ASSERT(reporter, p1.interpolate(p2, 0.5f, &out));
4509 REPORTER_ASSERT(reporter, out.getBounds() == SkRect::MakeLTRB(3, 1, 4, 2));
4510 p1.reset();
4511 p1.moveTo(4, 4);
4512 p1.conicTo(5, 4, 5, 5, 1 / SkScalarSqrt(2));
4513 p2.reset();
4514 p2.moveTo(4, 2);
4515 p2.conicTo(7, 2, 7, 5, 1 / SkScalarSqrt(2));
4516 REPORTER_ASSERT(reporter, p1.isInterpolatable(p2));
4517 REPORTER_ASSERT(reporter, p1.interpolate(p2, 0.5f, &out));
4518 REPORTER_ASSERT(reporter, out.getBounds() == SkRect::MakeLTRB(4, 3, 6, 5));
4519 p2.reset();
4520 p2.moveTo(4, 2);
4521 p2.conicTo(6, 3, 6, 5, 1);
4522 REPORTER_ASSERT(reporter, !p1.isInterpolatable(p2));
4523 p2.reset();
4524 p2.moveTo(4, 4);
4525 p2.conicTo(5, 4, 5, 5, 0.5f);
4526 REPORTER_ASSERT(reporter, !p1.isInterpolatable(p2));
4527}
4528
4529DEF_TEST(PathInterp, reporter) {
4530 test_interp(reporter);
4531}
4532
4533#include "SkSurface.h"
4534DEF_TEST(PathBigCubic, reporter) {
4535 SkPath path;
4536 path.moveTo(SkBits2Float(0x00000000), SkBits2Float(0x00000000)); // 0, 0
4537 path.moveTo(SkBits2Float(0x44000000), SkBits2Float(0x373938b8)); // 512, 1.10401e-05f
4538 path.cubicTo(SkBits2Float(0x00000001), SkBits2Float(0xdf000052), SkBits2Float(0x00000100), SkBits2Float(0x00000000), SkBits2Float(0x00000100), SkBits2Float(0x00000000)); // 1.4013e-45f, -9.22346e+18f, 3.58732e-43f, 0, 3.58732e-43f, 0
4539 path.moveTo(0, 512);
4540
4541 // this call should not assert
4542 SkSurface::MakeRasterN32Premul(255, 255, nullptr)->getCanvas()->drawPath(path, SkPaint());
4543}
4544
4545DEF_TEST(PathContains, reporter) {
4546 test_contains(reporter);
4547}
4548
4549DEF_TEST(Paths, reporter) {
4550 test_fuzz_crbug_647922();
4551 test_fuzz_crbug_643933();
4552 test_sect_with_horizontal_needs_pinning();
4553 test_crbug_629455(reporter);
4554 test_fuzz_crbug_627414(reporter);
4555 test_path_crbug364224();
4556 test_fuzz_crbug_662952(reporter);
4557 test_fuzz_crbug_662730(reporter);
4558 test_fuzz_crbug_662780();
4559 test_mask_overflow();
4560 test_path_crbugskia6003();
4561 test_fuzz_crbug_668907();
4562#if !defined(SK_SUPPORT_LEGACY_DELTA_AA)
4563 test_skbug_6947();
Yuqian Lia81b6262017-09-06 17:10:05 -04004564 test_skbug_7015();
Yuqian Li3154a532017-09-06 13:33:30 -04004565#endif
4566
4567 SkSize::Make(3, 4);
4568
4569 SkPath p, empty;
4570 SkRect bounds, bounds2;
4571 test_empty(reporter, p);
4572
4573 REPORTER_ASSERT(reporter, p.getBounds().isEmpty());
4574
4575 // this triggers a code path in SkPath::operator= which is otherwise unexercised
4576 SkPath& self = p;
4577 p = self;
4578
4579 // this triggers a code path in SkPath::swap which is otherwise unexercised
4580 p.swap(self);
4581
4582 bounds.set(0, 0, SK_Scalar1, SK_Scalar1);
4583
4584 p.addRoundRect(bounds, SK_Scalar1, SK_Scalar1);
4585 check_convex_bounds(reporter, p, bounds);
4586 // we have quads or cubics
4587 REPORTER_ASSERT(reporter,
4588 p.getSegmentMasks() & (kCurveSegmentMask | SkPath::kConic_SegmentMask));
4589 REPORTER_ASSERT(reporter, !p.isEmpty());
4590
4591 p.reset();
4592 test_empty(reporter, p);
4593
4594 p.addOval(bounds);
4595 check_convex_bounds(reporter, p, bounds);
4596 REPORTER_ASSERT(reporter, !p.isEmpty());
4597
4598 p.rewind();
4599 test_empty(reporter, p);
4600
4601 p.addRect(bounds);
4602 check_convex_bounds(reporter, p, bounds);
4603 // we have only lines
4604 REPORTER_ASSERT(reporter, SkPath::kLine_SegmentMask == p.getSegmentMasks());
4605 REPORTER_ASSERT(reporter, !p.isEmpty());
4606
4607 REPORTER_ASSERT(reporter, p != empty);
4608 REPORTER_ASSERT(reporter, !(p == empty));
4609
4610 // do getPoints and getVerbs return the right result
4611 REPORTER_ASSERT(reporter, p.getPoints(nullptr, 0) == 4);
4612 REPORTER_ASSERT(reporter, p.getVerbs(nullptr, 0) == 5);
4613 SkPoint pts[4];
4614 int count = p.getPoints(pts, 4);
4615 REPORTER_ASSERT(reporter, count == 4);
4616 uint8_t verbs[6];
4617 verbs[5] = 0xff;
4618 p.getVerbs(verbs, 5);
4619 REPORTER_ASSERT(reporter, SkPath::kMove_Verb == verbs[0]);
4620 REPORTER_ASSERT(reporter, SkPath::kLine_Verb == verbs[1]);
4621 REPORTER_ASSERT(reporter, SkPath::kLine_Verb == verbs[2]);
4622 REPORTER_ASSERT(reporter, SkPath::kLine_Verb == verbs[3]);
4623 REPORTER_ASSERT(reporter, SkPath::kClose_Verb == verbs[4]);
4624 REPORTER_ASSERT(reporter, 0xff == verbs[5]);
4625 bounds2.set(pts, 4);
4626 REPORTER_ASSERT(reporter, bounds == bounds2);
4627
4628 bounds.offset(SK_Scalar1*3, SK_Scalar1*4);
4629 p.offset(SK_Scalar1*3, SK_Scalar1*4);
4630 REPORTER_ASSERT(reporter, bounds == p.getBounds());
4631
4632 REPORTER_ASSERT(reporter, p.isRect(nullptr));
4633 bounds2.setEmpty();
4634 REPORTER_ASSERT(reporter, p.isRect(&bounds2));
4635 REPORTER_ASSERT(reporter, bounds == bounds2);
4636
4637 // now force p to not be a rect
4638 bounds.set(0, 0, SK_Scalar1/2, SK_Scalar1/2);
4639 p.addRect(bounds);
4640 REPORTER_ASSERT(reporter, !p.isRect(nullptr));
4641
4642 // Test an edge case w.r.t. the bound returned by isRect (i.e., the
4643 // path has a trailing moveTo. Please see crbug.com\445368)
4644 {
4645 SkRect r;
4646 p.reset();
4647 p.addRect(bounds);
4648 REPORTER_ASSERT(reporter, p.isRect(&r));
4649 REPORTER_ASSERT(reporter, r == bounds);
4650 // add a moveTo outside of our bounds
4651 p.moveTo(bounds.fLeft + 10, bounds.fBottom + 10);
4652 REPORTER_ASSERT(reporter, p.isRect(&r));
4653 REPORTER_ASSERT(reporter, r == bounds);
4654 }
4655
4656 test_operatorEqual(reporter);
4657 test_isLine(reporter);
4658 test_isRect(reporter);
4659 test_is_simple_closed_rect(reporter);
4660 test_isNestedFillRects(reporter);
4661 test_zero_length_paths(reporter);
4662 test_direction(reporter);
4663 test_convexity(reporter);
4664 test_convexity2(reporter);
4665 test_conservativelyContains(reporter);
4666 test_close(reporter);
4667 test_segment_masks(reporter);
4668 test_flattening(reporter);
4669 test_transform(reporter);
4670 test_bounds(reporter);
4671 test_iter(reporter);
4672 test_raw_iter(reporter);
4673 test_circle(reporter);
4674 test_oval(reporter);
4675 test_strokerec(reporter);
4676 test_addPoly(reporter);
4677 test_isfinite(reporter);
4678 test_isfinite_after_transform(reporter);
4679 test_islastcontourclosed(reporter);
4680 test_arb_round_rect_is_convex(reporter);
4681 test_arb_zero_rad_round_rect_is_rect(reporter);
4682 test_addrect(reporter);
4683 test_addrect_isfinite(reporter);
4684 test_tricky_cubic();
4685 test_clipped_cubic();
4686 test_crbug_170666();
4687 test_crbug_493450(reporter);
4688 test_crbug_495894(reporter);
4689 test_crbug_613918();
4690 test_bad_cubic_crbug229478();
4691 test_bad_cubic_crbug234190();
4692 test_gen_id(reporter);
4693 test_path_close_issue1474(reporter);
4694 test_path_to_region(reporter);
4695 test_rrect(reporter);
4696 test_arc(reporter);
4697 test_arc_ovals(reporter);
4698 test_arcTo(reporter);
4699 test_addPath(reporter);
4700 test_addPathMode(reporter, false, false);
4701 test_addPathMode(reporter, true, false);
4702 test_addPathMode(reporter, false, true);
4703 test_addPathMode(reporter, true, true);
4704 test_extendClosedPath(reporter);
4705 test_addEmptyPath(reporter, SkPath::kExtend_AddPathMode);
4706 test_addEmptyPath(reporter, SkPath::kAppend_AddPathMode);
4707 test_conicTo_special_case(reporter);
4708 test_get_point(reporter);
4709 test_contains(reporter);
4710 PathTest_Private::TestPathTo(reporter);
4711 PathRefTest_Private::TestPathRef(reporter);
4712 PathTest_Private::TestPathrefListeners(reporter);
4713 test_dump(reporter);
4714 test_path_crbug389050(reporter);
4715 test_path_crbugskia2820(reporter);
4716 test_path_crbugskia5995();
4717 test_skbug_3469(reporter);
4718 test_skbug_3239(reporter);
4719 test_bounds_crbug_513799(reporter);
4720 test_fuzz_crbug_638223();
4721}
4722
4723DEF_TEST(conservatively_contains_rect, reporter) {
4724 SkPath path;
4725
4726 path.moveTo(SkBits2Float(0x44000000), SkBits2Float(0x373938b8)); // 512, 1.10401e-05f
4727 // 1.4013e-45f, -9.22346e+18f, 3.58732e-43f, 0, 3.58732e-43f, 0
4728 path.cubicTo(SkBits2Float(0x00000001), SkBits2Float(0xdf000052),
4729 SkBits2Float(0x00000100), SkBits2Float(0x00000000),
4730 SkBits2Float(0x00000100), SkBits2Float(0x00000000));
4731 path.moveTo(0, 0);
4732
4733 // this guy should not assert
4734 path.conservativelyContainsRect({ -211747, 12.1115f, -197893, 25.0321f });
4735}
4736
4737///////////////////////////////////////////////////////////////////////////////////////////////////
4738
4739static void rand_path(SkPath* path, SkRandom& rand, SkPath::Verb verb, int n) {
4740 for (int i = 0; i < n; ++i) {
4741 switch (verb) {
4742 case SkPath::kLine_Verb:
4743 path->lineTo(rand.nextF()*100, rand.nextF()*100);
4744 break;
4745 case SkPath::kQuad_Verb:
4746 path->quadTo(rand.nextF()*100, rand.nextF()*100,
4747 rand.nextF()*100, rand.nextF()*100);
4748 break;
4749 case SkPath::kConic_Verb:
4750 path->conicTo(rand.nextF()*100, rand.nextF()*100,
4751 rand.nextF()*100, rand.nextF()*100, rand.nextF()*10);
4752 break;
4753 case SkPath::kCubic_Verb:
4754 path->cubicTo(rand.nextF()*100, rand.nextF()*100,
4755 rand.nextF()*100, rand.nextF()*100,
4756 rand.nextF()*100, rand.nextF()*100);
4757 break;
4758 default:
4759 SkASSERT(false);
4760 }
4761 }
4762}
4763
4764#include "SkPathOps.h"
4765DEF_TEST(path_tight_bounds, reporter) {
4766 SkRandom rand;
4767
4768 const SkPath::Verb verbs[] = {
4769 SkPath::kLine_Verb, SkPath::kQuad_Verb, SkPath::kConic_Verb, SkPath::kCubic_Verb,
4770 };
4771 for (int i = 0; i < 1000; ++i) {
4772 for (int n = 1; n <= 10; n += 9) {
4773 for (SkPath::Verb verb : verbs) {
4774 SkPath path;
4775 rand_path(&path, rand, verb, n);
4776 SkRect bounds = path.getBounds();
4777 SkRect tight = path.computeTightBounds();
4778 REPORTER_ASSERT(reporter, bounds.contains(tight));
4779
4780 SkRect tight2;
4781 TightBounds(path, &tight2);
4782 REPORTER_ASSERT(reporter, nearly_equal(tight, tight2));
4783 }
4784 }
4785 }
4786}
4787
4788DEF_TEST(skbug_6450, r) {
4789 SkRect ri = { 0.18554693f, 195.26283f, 0.185784385f, 752.644409f };
4790 SkVector rdi[4] = {
4791 { 1.81159976e-09f, 7.58768801e-05f },
4792 { 0.000118725002f, 0.000118725002f },
4793 { 0.000118725002f, 0.000118725002f },
4794 { 0.000118725002f, 0.486297607f }
4795 };
4796 SkRRect irr;
4797 irr.setRectRadii(ri, rdi);
4798 SkRect ro = { 9.18354821e-39f, 2.1710848e+9f, 2.16945843e+9f, 3.47808128e+9f };
4799 SkVector rdo[4] = {
4800 { 0, 0 },
4801 { 0.0103298295f, 0.185887396f },
4802 { 2.52999727e-29f, 169.001938f },
4803 { 195.262741f, 195.161255f }
4804 };
4805 SkRRect orr;
4806 orr.setRectRadii(ro, rdo);
4807 SkMakeNullCanvas()->drawDRRect(orr, irr, SkPaint());
4808}
4809
4810DEF_TEST(PathRefSerialization, reporter) {
4811 SkPath path;
4812 const size_t numMoves = 5;
4813 const size_t numConics = 7;
4814 const size_t numPoints = numMoves + 2 * numConics;
4815 const size_t numVerbs = numMoves + numConics;
4816 for (size_t i = 0; i < numMoves; ++i) path.moveTo(1, 2);
4817 for (size_t i = 0; i < numConics; ++i) path.conicTo(1, 2, 3, 4, 5);
4818 REPORTER_ASSERT(reporter, path.countPoints() == numPoints);
4819 REPORTER_ASSERT(reporter, path.countVerbs() == numVerbs);
4820
4821 // Verify that path serializes/deserializes properly.
4822 sk_sp<SkData> data = path.serialize();
4823 size_t bytesWritten = data->size();
4824
4825 {
4826 SkPath readBack;
4827 REPORTER_ASSERT(reporter, readBack != path);
4828 size_t bytesRead = readBack.readFromMemory(data->data(), bytesWritten);
4829 REPORTER_ASSERT(reporter, bytesRead == bytesWritten);
4830 REPORTER_ASSERT(reporter, readBack == path);
4831 }
4832
4833 // uint32_t[] offset into serialized path.
4834 const size_t verbCountOffset = 4;
4835 const size_t pointCountOffset = 5;
4836 const size_t conicCountOffset = 6;
4837
4838 // Verify that this test is changing the right values.
4839 const int* writtenValues = static_cast<const int*>(data->data());
4840 REPORTER_ASSERT(reporter, writtenValues[verbCountOffset] == numVerbs);
4841 REPORTER_ASSERT(reporter, writtenValues[pointCountOffset] == numPoints);
4842 REPORTER_ASSERT(reporter, writtenValues[conicCountOffset] == numConics);
4843
4844 // Too many verbs, points, or conics fails to deserialize silently.
4845 const int tooManyObjects = INT_MAX;
4846 size_t offsets[] = {verbCountOffset, pointCountOffset, conicCountOffset};
4847 for (size_t i = 0; i < 3; ++i) {
4848 SkAutoMalloc storage_copy(bytesWritten);
4849 memcpy(storage_copy.get(), data->data(), bytesWritten);
4850 static_cast<int*>(storage_copy.get())[offsets[i]] = tooManyObjects;
4851 SkPath readBack;
4852 size_t bytesRead = readBack.readFromMemory(storage_copy.get(), bytesWritten);
4853 REPORTER_ASSERT(reporter, !bytesRead);
4854 }
4855
4856 // One less byte (rounded down to alignment) than was written will also
4857 // fail to be deserialized.
4858 {
4859 SkPath readBack;
4860 size_t bytesRead = readBack.readFromMemory(data->data(), bytesWritten - 4);
4861 REPORTER_ASSERT(reporter, !bytesRead);
4862 }
4863}
Mike Klein1170a552017-09-08 15:00:25 -04004864
4865DEF_TEST(NonFinitePathIteration, reporter) {
4866 SkPath path;
4867 path.moveTo(SK_ScalarInfinity, SK_ScalarInfinity);
4868
4869 int verbs = 0;
4870
4871 SkPath::RawIter iter(path);
4872 SkPoint pts[4];
4873 while (iter.next(pts) != SkPath::kDone_Verb) {
4874 verbs++;
4875 }
4876
4877 REPORTER_ASSERT(reporter, verbs == 0);
4878}