blob: 914eef10ed19a2805b9313c8a7255c429ef04abf [file] [log] [blame]
caryclark@google.com818b0cc2013-04-08 11:50:46 +00001/*
2 * Copyright 2012 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 */
Hal Canary50dbc092018-06-12 14:50:37 -04007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkString.h"
9#include "include/private/SkMacros.h"
10#include "tests/PathOpsExtendedTest.h"
11#include "tests/PathOpsThreadedCommon.h"
caryclark@google.com818b0cc2013-04-08 11:50:46 +000012
13// four rects, of four sizes
14// for 3 smaller sizes, tall, wide
15 // top upper mid lower bottom aligned (3 bits, 5 values)
16 // same with x (3 bits, 5 values)
17// not included, square, tall, wide (2 bits)
18// cw or ccw (1 bit)
19
caryclark@google.com66089e42013-04-10 15:55:37 +000020static void testSimplify4x4RectsMain(PathOpsThreadState* data)
caryclark@google.com818b0cc2013-04-08 11:50:46 +000021{
22 SkASSERT(data);
caryclark@google.com66089e42013-04-10 15:55:37 +000023 PathOpsThreadState& state = *data;
caryclark@google.com66089e42013-04-10 15:55:37 +000024 int aShape = state.fA & 0x03;
Mike Reed30bc5272019-11-22 18:34:02 +000025 SkPathDirection aCW = state.fA >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
caryclark@google.com66089e42013-04-10 15:55:37 +000026 int bShape = state.fB & 0x03;
Mike Reed30bc5272019-11-22 18:34:02 +000027 SkPathDirection bCW = state.fB >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
caryclark@google.com66089e42013-04-10 15:55:37 +000028 int cShape = state.fC & 0x03;
Mike Reed30bc5272019-11-22 18:34:02 +000029 SkPathDirection cCW = state.fC >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
caryclark@google.com66089e42013-04-10 15:55:37 +000030 int dShape = state.fD & 0x03;
Mike Reed30bc5272019-11-22 18:34:02 +000031 SkPathDirection dCW = state.fD >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
caryclark@google.com66089e42013-04-10 15:55:37 +000032 for (int aXAlign = 0; aXAlign < 5; ++aXAlign) {
33 for (int aYAlign = 0; aYAlign < 5; ++aYAlign) {
34 for (int bXAlign = 0; bXAlign < 5; ++bXAlign) {
35 for (int bYAlign = 0; bYAlign < 5; ++bYAlign) {
36 for (int cXAlign = 0; cXAlign < 5; ++cXAlign) {
37 for (int cYAlign = 0; cYAlign < 5; ++cYAlign) {
38 for (int dXAlign = 0; dXAlign < 5; ++dXAlign) {
39 for (int dYAlign = 0; dYAlign < 5; ++dYAlign) {
caryclark8f186432016-10-06 11:46:25 -070040 SkString pathStr;
caryclark@google.com66089e42013-04-10 15:55:37 +000041 SkPath path, out;
Mike Reed3e7af412019-11-26 03:34:16 +000042 path.setFillType(SkPath::kWinding_FillType);
robertphillips73add932016-04-07 09:01:20 -070043 int l SK_INIT_TO_AVOID_WARNING, t SK_INIT_TO_AVOID_WARNING,
44 r SK_INIT_TO_AVOID_WARNING, b SK_INIT_TO_AVOID_WARNING;
caryclark@google.com66089e42013-04-10 15:55:37 +000045 if (aShape) {
46 switch (aShape) {
47 case 1: // square
48 l = 0; r = 60;
49 t = 0; b = 60;
50 aXAlign = 5;
51 aYAlign = 5;
52 break;
53 case 2:
54 l = aXAlign * 12;
55 r = l + 30;
56 t = 0; b = 60;
57 aYAlign = 5;
58 break;
59 case 3:
60 l = 0; r = 60;
61 t = aYAlign * 12;
62 b = l + 30;
63 aXAlign = 5;
64 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +000065 }
caryclark@google.com66089e42013-04-10 15:55:37 +000066 path.addRect(SkIntToScalar(l), SkIntToScalar(t), SkIntToScalar(r), SkIntToScalar(b),
67 aCW);
caryclark8f186432016-10-06 11:46:25 -070068 if (state.fReporter->verbose()) {
69 pathStr.appendf(" path.addRect(%d, %d, %d, %d,"
Mike Reed30bc5272019-11-22 18:34:02 +000070 " SkPathDirection::kC%sW);\n", l, t, r, b,
71 aCW == SkPathDirection::kCCW ? "C" : "");
caryclark@google.com8d0a5242013-07-16 16:11:16 +000072 }
caryclark@google.com66089e42013-04-10 15:55:37 +000073 } else {
74 aXAlign = 5;
75 aYAlign = 5;
76 }
77 if (bShape) {
78 switch (bShape) {
79 case 1: // square
80 l = bXAlign * 10;
81 r = l + 20;
82 t = bYAlign * 10;
83 b = l + 20;
84 break;
85 case 2:
86 l = bXAlign * 10;
87 r = l + 20;
88 t = 10; b = 40;
89 bYAlign = 5;
90 break;
91 case 3:
92 l = 10; r = 40;
93 t = bYAlign * 10;
94 b = l + 20;
95 bXAlign = 5;
96 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +000097 }
caryclark@google.com66089e42013-04-10 15:55:37 +000098 path.addRect(SkIntToScalar(l), SkIntToScalar(t), SkIntToScalar(r), SkIntToScalar(b),
99 bCW);
caryclark8f186432016-10-06 11:46:25 -0700100 if (state.fReporter->verbose()) {
101 pathStr.appendf(" path.addRect(%d, %d, %d, %d,"
Mike Reed30bc5272019-11-22 18:34:02 +0000102 " SkPathDirection::kC%sW);\n", l, t, r, b,
103 bCW == SkPathDirection::kCCW ? "C" : "");
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000104 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000105 } else {
106 bXAlign = 5;
107 bYAlign = 5;
108 }
109 if (cShape) {
110 switch (cShape) {
111 case 1: // square
112 l = cXAlign * 6;
113 r = l + 12;
114 t = cYAlign * 6;
115 b = l + 12;
116 break;
117 case 2:
118 l = cXAlign * 6;
119 r = l + 12;
120 t = 20; b = 30;
121 cYAlign = 5;
122 break;
123 case 3:
124 l = 20; r = 30;
125 t = cYAlign * 6;
126 b = l + 20;
127 cXAlign = 5;
128 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000129 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000130 path.addRect(SkIntToScalar(l), SkIntToScalar(t), SkIntToScalar(r), SkIntToScalar(b),
131 cCW);
caryclark8f186432016-10-06 11:46:25 -0700132 if (state.fReporter->verbose()) {
133 pathStr.appendf(" path.addRect(%d, %d, %d, %d,"
Mike Reed30bc5272019-11-22 18:34:02 +0000134 " SkPathDirection::kC%sW);\n", l, t, r, b,
135 cCW == SkPathDirection::kCCW ? "C" : "");
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000136 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000137 } else {
138 cXAlign = 5;
139 cYAlign = 5;
140 }
141 if (dShape) {
142 switch (dShape) {
143 case 1: // square
144 l = dXAlign * 4;
145 r = l + 9;
146 t = dYAlign * 4;
147 b = l + 9;
148 break;
149 case 2:
150 l = dXAlign * 6;
151 r = l + 9;
152 t = 32; b = 36;
153 dYAlign = 5;
154 break;
155 case 3:
156 l = 32; r = 36;
157 t = dYAlign * 6;
158 b = l + 9;
159 dXAlign = 5;
160 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000161 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000162 path.addRect(SkIntToScalar(l), SkIntToScalar(t), SkIntToScalar(r), SkIntToScalar(b),
163 dCW);
caryclark8f186432016-10-06 11:46:25 -0700164 if (state.fReporter->verbose()) {
165 pathStr.appendf(" path.addRect(%d, %d, %d, %d,"
Mike Reed30bc5272019-11-22 18:34:02 +0000166 " SkPathDirection::kC%sW);\n", l, t, r, b,
167 dCW == SkPathDirection::kCCW ? "C" : "");
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000168 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000169 } else {
170 dXAlign = 5;
171 dYAlign = 5;
172 }
173 path.close();
caryclark8f186432016-10-06 11:46:25 -0700174 if (state.fReporter->verbose()) {
Mike Reed3e7af412019-11-26 03:34:16 +0000175 state.outputProgress(pathStr.c_str(), SkPath::kWinding_FillType);
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000176 }
caryclark8f186432016-10-06 11:46:25 -0700177 testSimplify(path, false, out, state, pathStr.c_str());
178 if (state.fReporter->verbose()) {
Mike Reed3e7af412019-11-26 03:34:16 +0000179 state.outputProgress(pathStr.c_str(), SkPath::kEvenOdd_FillType);
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000180 }
caryclark8f186432016-10-06 11:46:25 -0700181 testSimplify(path, true, out, state, pathStr.c_str());
caryclark@google.com66089e42013-04-10 15:55:37 +0000182 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000183 }
184 }
185 }
186 }
187 }
188 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000189 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000190}
191
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000192DEF_TEST(PathOpsSimplifyRectsThreaded, reporter) {
mtklein406654b2014-09-03 15:34:37 -0700193 initializeTests(reporter, "testLine");
194 PathOpsThreadedTestRunner testRunner(reporter);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000195 for (int a = 0; a < 8; ++a) { // outermost
196 for (int b = a ; b < 8; ++b) {
197 for (int c = b ; c < 8; ++c) {
198 for (int d = c; d < 8; ++d) {
halcanary385fe4d2015-08-26 13:07:48 -0700199 *testRunner.fRunnables.append() = new PathOpsThreadedRunnable(
200 &testSimplify4x4RectsMain, a, b, c, d, &testRunner);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000201 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000202 if (!reporter->allowExtendedTest()) goto finish;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000203 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000204 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000205 }
206finish:
caryclark@google.com66089e42013-04-10 15:55:37 +0000207 testRunner.render();
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000208}