blob: e3b58a3fb711db15ef363b12fb4fb2c56f00367d [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;
25 SkPath::Direction aCW = state.fA >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
26 int bShape = state.fB & 0x03;
27 SkPath::Direction bCW = state.fB >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
28 int cShape = state.fC & 0x03;
29 SkPath::Direction cCW = state.fC >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
30 int dShape = state.fD & 0x03;
31 SkPath::Direction dCW = state.fD >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
32 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;
caryclark@google.com66089e42013-04-10 15:55:37 +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,"
caryclark@google.com8d0a5242013-07-16 16:11:16 +000070 " SkPath::kC%sW_Direction);\n", l, t, r, b, aCW ? "C" : "");
71 }
caryclark@google.com66089e42013-04-10 15:55:37 +000072 } else {
73 aXAlign = 5;
74 aYAlign = 5;
75 }
76 if (bShape) {
77 switch (bShape) {
78 case 1: // square
79 l = bXAlign * 10;
80 r = l + 20;
81 t = bYAlign * 10;
82 b = l + 20;
83 break;
84 case 2:
85 l = bXAlign * 10;
86 r = l + 20;
87 t = 10; b = 40;
88 bYAlign = 5;
89 break;
90 case 3:
91 l = 10; r = 40;
92 t = bYAlign * 10;
93 b = l + 20;
94 bXAlign = 5;
95 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +000096 }
caryclark@google.com66089e42013-04-10 15:55:37 +000097 path.addRect(SkIntToScalar(l), SkIntToScalar(t), SkIntToScalar(r), SkIntToScalar(b),
98 bCW);
caryclark8f186432016-10-06 11:46:25 -070099 if (state.fReporter->verbose()) {
100 pathStr.appendf(" path.addRect(%d, %d, %d, %d,"
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000101 " SkPath::kC%sW_Direction);\n", l, t, r, b, bCW ? "C" : "");
102 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000103 } else {
104 bXAlign = 5;
105 bYAlign = 5;
106 }
107 if (cShape) {
108 switch (cShape) {
109 case 1: // square
110 l = cXAlign * 6;
111 r = l + 12;
112 t = cYAlign * 6;
113 b = l + 12;
114 break;
115 case 2:
116 l = cXAlign * 6;
117 r = l + 12;
118 t = 20; b = 30;
119 cYAlign = 5;
120 break;
121 case 3:
122 l = 20; r = 30;
123 t = cYAlign * 6;
124 b = l + 20;
125 cXAlign = 5;
126 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000127 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000128 path.addRect(SkIntToScalar(l), SkIntToScalar(t), SkIntToScalar(r), SkIntToScalar(b),
129 cCW);
caryclark8f186432016-10-06 11:46:25 -0700130 if (state.fReporter->verbose()) {
131 pathStr.appendf(" path.addRect(%d, %d, %d, %d,"
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000132 " SkPath::kC%sW_Direction);\n", l, t, r, b, cCW ? "C" : "");
133 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000134 } else {
135 cXAlign = 5;
136 cYAlign = 5;
137 }
138 if (dShape) {
139 switch (dShape) {
140 case 1: // square
141 l = dXAlign * 4;
142 r = l + 9;
143 t = dYAlign * 4;
144 b = l + 9;
145 break;
146 case 2:
147 l = dXAlign * 6;
148 r = l + 9;
149 t = 32; b = 36;
150 dYAlign = 5;
151 break;
152 case 3:
153 l = 32; r = 36;
154 t = dYAlign * 6;
155 b = l + 9;
156 dXAlign = 5;
157 break;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000158 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000159 path.addRect(SkIntToScalar(l), SkIntToScalar(t), SkIntToScalar(r), SkIntToScalar(b),
160 dCW);
caryclark8f186432016-10-06 11:46:25 -0700161 if (state.fReporter->verbose()) {
162 pathStr.appendf(" path.addRect(%d, %d, %d, %d,"
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000163 " SkPath::kC%sW_Direction);\n", l, t, r, b, dCW ? "C" : "");
164 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000165 } else {
166 dXAlign = 5;
167 dYAlign = 5;
168 }
169 path.close();
caryclark8f186432016-10-06 11:46:25 -0700170 if (state.fReporter->verbose()) {
Mike Reed4241f5e2019-09-14 19:13:23 +0000171 state.outputProgress(pathStr.c_str(), SkPath::kWinding_FillType);
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000172 }
caryclark8f186432016-10-06 11:46:25 -0700173 testSimplify(path, false, out, state, pathStr.c_str());
174 if (state.fReporter->verbose()) {
Mike Reed4241f5e2019-09-14 19:13:23 +0000175 state.outputProgress(pathStr.c_str(), SkPath::kEvenOdd_FillType);
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000176 }
caryclark8f186432016-10-06 11:46:25 -0700177 testSimplify(path, true, out, state, pathStr.c_str());
caryclark@google.com66089e42013-04-10 15:55:37 +0000178 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000179 }
180 }
181 }
182 }
183 }
184 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000185 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000186}
187
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000188DEF_TEST(PathOpsSimplifyRectsThreaded, reporter) {
mtklein406654b2014-09-03 15:34:37 -0700189 initializeTests(reporter, "testLine");
190 PathOpsThreadedTestRunner testRunner(reporter);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000191 for (int a = 0; a < 8; ++a) { // outermost
192 for (int b = a ; b < 8; ++b) {
193 for (int c = b ; c < 8; ++c) {
194 for (int d = c; d < 8; ++d) {
halcanary385fe4d2015-08-26 13:07:48 -0700195 *testRunner.fRunnables.append() = new PathOpsThreadedRunnable(
196 &testSimplify4x4RectsMain, a, b, c, d, &testRunner);
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000197 }
caryclark@google.com66089e42013-04-10 15:55:37 +0000198 if (!reporter->allowExtendedTest()) goto finish;
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000199 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000200 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000201 }
202finish:
caryclark@google.com66089e42013-04-10 15:55:37 +0000203 testRunner.render();
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000204}