blob: c4f011a0dc65ae85b7c5421223d70ba8f2a909b6 [file] [log] [blame]
reed@google.comee068aa2011-12-21 19:36:21 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
reed@google.comee068aa2011-12-21 19:36:21 +00008#include "SkCanvas.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +00009#include "SkPath.h"
10#include "Test.h"
reed@google.comee068aa2011-12-21 19:36:21 +000011
reed@google.comee068aa2011-12-21 19:36:21 +000012#define DIMENSION 32
13
14static void drawAndTest(skiatest::Reporter* reporter, const SkPath& path,
15 const SkPaint& paint, bool shouldDraw) {
16 SkBitmap bm;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000017 bm.allocN32Pixels(DIMENSION, DIMENSION);
18 SkASSERT(DIMENSION*4 == bm.rowBytes()); // ensure no padding on each row
junov@google.comdbfac8a2012-12-06 21:47:40 +000019 bm.eraseColor(SK_ColorTRANSPARENT);
reed@google.comee068aa2011-12-21 19:36:21 +000020
21 SkCanvas canvas(bm);
22 SkPaint p(paint);
23 p.setColor(SK_ColorWHITE);
24
25 canvas.drawPath(path, p);
26
27 size_t count = DIMENSION * DIMENSION;
28 const SkPMColor* ptr = bm.getAddr32(0, 0);
29
caryclark@google.com42639cd2012-06-06 12:03:39 +000030 SkPMColor andValue = ~0U;
reed@google.comee068aa2011-12-21 19:36:21 +000031 SkPMColor orValue = 0;
32 for (size_t i = 0; i < count; ++i) {
33 SkPMColor c = ptr[i];
34 andValue &= c;
35 orValue |= c;
36 }
37
38 // success means we drew everywhere or nowhere (depending on shouldDraw)
bsalomon@google.comcadbcb82012-01-06 19:22:11 +000039 bool success = shouldDraw ? (~0U == andValue) : (0 == orValue);
reed@google.comee068aa2011-12-21 19:36:21 +000040
41 if (!success) {
halcanary@google.coma9325fa2014-01-10 14:58:10 +000042 const char* str;
reed@google.comee068aa2011-12-21 19:36:21 +000043 if (shouldDraw) {
halcanary@google.coma9325fa2014-01-10 14:58:10 +000044 str = "Path expected to draw everywhere, but didn't. ";
reed@google.comee068aa2011-12-21 19:36:21 +000045 } else {
halcanary@google.coma9325fa2014-01-10 14:58:10 +000046 str = "Path expected to draw nowhere, but did. ";
reed@google.comee068aa2011-12-21 19:36:21 +000047 }
halcanary@google.coma9325fa2014-01-10 14:58:10 +000048 ERRORF(reporter, "%s style[%d] cap[%d] join[%d] antialias[%d]"
49 " filltype[%d] ptcount[%d]", str, paint.getStyle(),
50 paint.getStrokeCap(), paint.getStrokeJoin(),
51 paint.isAntiAlias(), path.getFillType(), path.countPoints());
reed@google.comee068aa2011-12-21 19:36:21 +000052// uncomment this if you want to step in to see the failure
53// canvas.drawPath(path, p);
54 }
55}
56
57static void iter_paint(skiatest::Reporter* reporter, const SkPath& path, bool shouldDraw) {
58 static const SkPaint::Cap gCaps[] = {
59 SkPaint::kButt_Cap,
60 SkPaint::kRound_Cap,
61 SkPaint::kSquare_Cap
62 };
63 static const SkPaint::Join gJoins[] = {
64 SkPaint::kMiter_Join,
65 SkPaint::kRound_Join,
66 SkPaint::kBevel_Join
67 };
68 static const SkPaint::Style gStyles[] = {
69 SkPaint::kFill_Style,
70 SkPaint::kStroke_Style,
71 SkPaint::kStrokeAndFill_Style
72 };
73 for (size_t cap = 0; cap < SK_ARRAY_COUNT(gCaps); ++cap) {
74 for (size_t join = 0; join < SK_ARRAY_COUNT(gJoins); ++join) {
75 for (size_t style = 0; style < SK_ARRAY_COUNT(gStyles); ++style) {
76 SkPaint paint;
77 paint.setStrokeWidth(SkIntToScalar(10));
78
79 paint.setStrokeCap(gCaps[cap]);
80 paint.setStrokeJoin(gJoins[join]);
81 paint.setStyle(gStyles[style]);
82
83 paint.setAntiAlias(false);
84 drawAndTest(reporter, path, paint, shouldDraw);
85 paint.setAntiAlias(true);
86 drawAndTest(reporter, path, paint, shouldDraw);
87 }
88 }
89 }
90}
91
92#define CX (SkIntToScalar(DIMENSION) / 2)
93#define CY (SkIntToScalar(DIMENSION) / 2)
94
sugoi@google.com54f0d1b2013-02-27 19:17:41 +000095static void make_empty(SkPath*) {}
reed@google.com21e0bc22011-12-21 20:26:01 +000096static void make_M(SkPath* path) { path->moveTo(CX, CY); }
97static void make_MM(SkPath* path) { path->moveTo(CX, CY); path->moveTo(CX, CY); }
98static void make_MZM(SkPath* path) { path->moveTo(CX, CY); path->close(); path->moveTo(CX, CY); }
99static void make_L(SkPath* path) { path->moveTo(CX, CY); path->lineTo(CX, CY); }
100static void make_Q(SkPath* path) { path->moveTo(CX, CY); path->quadTo(CX, CY, CX, CY); }
101static void make_C(SkPath* path) { path->moveTo(CX, CY); path->cubicTo(CX, CY, CX, CY, CX, CY); }
reed@google.comee068aa2011-12-21 19:36:21 +0000102
103/* Two invariants are tested: How does an empty/degenerate path draw?
104 * - if the path is drawn inverse, it should draw everywhere
105 * - if the path is drawn non-inverse, it should draw nowhere
106 *
107 * Things to iterate on:
108 * - path (empty, degenerate line/quad/cubic w/ and w/o close
109 * - paint style
110 * - path filltype
111 * - path stroke variants (e.g. caps, joins, width)
112 */
113static void test_emptydrawing(skiatest::Reporter* reporter) {
114 static void (*gMakeProc[])(SkPath*) = {
reed@google.com21e0bc22011-12-21 20:26:01 +0000115 make_empty, make_M, make_MM, make_MZM, make_L, make_Q, make_C
reed@google.comee068aa2011-12-21 19:36:21 +0000116 };
117 static SkPath::FillType gFills[] = {
118 SkPath::kWinding_FillType,
119 SkPath::kEvenOdd_FillType,
120 SkPath::kInverseWinding_FillType,
121 SkPath::kInverseEvenOdd_FillType
122 };
123 for (int doClose = 0; doClose < 2; ++doClose) {
124 for (size_t i = 0; i < SK_ARRAY_COUNT(gMakeProc); ++i) {
125 SkPath path;
126 gMakeProc[i](&path);
127 if (doClose) {
128 path.close();
129 }
130 for (size_t fill = 0; fill < SK_ARRAY_COUNT(gFills); ++fill) {
131 path.setFillType(gFills[fill]);
132 bool shouldDraw = path.isInverseFillType();
133 iter_paint(reporter, path, shouldDraw);
134 }
135 }
136 }
137}
138
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000139DEF_TEST(EmptyPath, reporter) {
reed@google.comee068aa2011-12-21 19:36:21 +0000140 test_emptydrawing(reporter);
141}