blob: 9195e4a6166820a9a3f979f013f38511dd89861a [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 */
7#include "PathOpsExtendedTest.h"
caryclark@google.com66089e42013-04-10 15:55:37 +00008#include "PathOpsThreadedCommon.h"
caryclark@google.com818b0cc2013-04-08 11:50:46 +00009
10// four rects, of four sizes
11// for 3 smaller sizes, tall, wide
12 // top upper mid lower bottom aligned (3 bits, 5 values)
13 // same with x (3 bits, 5 values)
14// not included, square, tall, wide (2 bits)
15// cw or ccw (1 bit)
16
caryclark@google.com66089e42013-04-10 15:55:37 +000017static void testPathOpsRectsMain(PathOpsThreadState* data)
caryclark@google.com818b0cc2013-04-08 11:50:46 +000018{
19 SkASSERT(data);
caryclark@google.com66089e42013-04-10 15:55:37 +000020 PathOpsThreadState& state = *data;
caryclark@google.com818b0cc2013-04-08 11:50:46 +000021 char pathStr[1024]; // gdb: set print elements 400
caryclark@google.com8d0a5242013-07-16 16:11:16 +000022 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
23 if (progress) {
24 sk_bzero(pathStr, sizeof(pathStr));
25 }
caryclark@google.com66089e42013-04-10 15:55:37 +000026 for (int a = 0 ; a < 6; ++a) {
27 for (int b = a + 1 ; b < 7; ++b) {
28 for (int c = 0 ; c < 6; ++c) {
29 for (int d = c + 1 ; d < 7; ++d) {
30 for (int e = SkPath::kWinding_FillType ; e <= SkPath::kEvenOdd_FillType; ++e) {
31 for (int f = SkPath::kWinding_FillType ; f <= SkPath::kEvenOdd_FillType; ++f) {
caryclark1049f122015-04-20 08:31:59 -070032 static int testNum = 6;
caryclark@google.com8d0a5242013-07-16 16:11:16 +000033 if (progress) {
34 char* str = pathStr;
caryclark1049f122015-04-20 08:31:59 -070035 str += sprintf(str,
36 "static void rects%d(skiatest::Reporter* reporter, const char* filename) {\n",
37 testNum);
38 str += sprintf(str, " SkPath path, pathB;");
caryclark@google.com8d0a5242013-07-16 16:11:16 +000039 str += sprintf(str, " path.setFillType(SkPath::k%s_FillType);\n",
40 e == SkPath::kWinding_FillType ? "Winding" : e == SkPath::kEvenOdd_FillType
41 ? "EvenOdd" : "?UNDEFINED");
42 str += sprintf(str, " path.addRect(%d, %d, %d, %d,"
43 " SkPath::kCW_Direction);\n", state.fA, state.fA, state.fB, state.fB);
44 str += sprintf(str, " path.addRect(%d, %d, %d, %d,"
45 " SkPath::kCW_Direction);\n", state.fC, state.fC, state.fD, state.fD);
46 str += sprintf(str, " pathB.setFillType(SkPath::k%s_FillType);\n",
47 f == SkPath::kWinding_FillType ? "Winding" : f == SkPath::kEvenOdd_FillType
48 ? "EvenOdd" : "?UNDEFINED");
49 str += sprintf(str, " pathB.addRect(%d, %d, %d, %d,"
50 " SkPath::kCW_Direction);\n", a, a, b, b);
51 str += sprintf(str, " pathB.addRect(%d, %d, %d, %d,"
52 " SkPath::kCW_Direction);\n", c, c, d, d);
caryclark1049f122015-04-20 08:31:59 -070053 str += sprintf(str,
54 " testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename);\n");
55 str += sprintf(str, "}\n\n");
caryclark@google.com8d0a5242013-07-16 16:11:16 +000056 }
caryclark@google.com66089e42013-04-10 15:55:37 +000057 SkPath pathA, pathB;
caryclark@google.com66089e42013-04-10 15:55:37 +000058 pathA.setFillType((SkPath::FillType) e);
caryclark@google.com66089e42013-04-10 15:55:37 +000059 pathA.addRect(SkIntToScalar(state.fA), SkIntToScalar(state.fA), SkIntToScalar(state.fB),
60 SkIntToScalar(state.fB), SkPath::kCW_Direction);
caryclark@google.com66089e42013-04-10 15:55:37 +000061 pathA.addRect(SkIntToScalar(state.fC), SkIntToScalar(state.fC), SkIntToScalar(state.fD),
62 SkIntToScalar(state.fD), SkPath::kCW_Direction);
caryclark@google.com66089e42013-04-10 15:55:37 +000063 pathA.close();
64 pathB.setFillType((SkPath::FillType) f);
caryclark@google.com66089e42013-04-10 15:55:37 +000065 pathB.addRect(SkIntToScalar(a), SkIntToScalar(a), SkIntToScalar(b),
66 SkIntToScalar(b), SkPath::kCW_Direction);
caryclark@google.com66089e42013-04-10 15:55:37 +000067 pathB.addRect(SkIntToScalar(c), SkIntToScalar(c), SkIntToScalar(d),
68 SkIntToScalar(d), SkPath::kCW_Direction);
caryclark@google.com66089e42013-04-10 15:55:37 +000069 pathB.close();
caryclark54359292015-03-26 07:52:43 -070070 for (int op = 0 ; op <= kXOR_SkPathOp; ++op) {
caryclark@google.com8d0a5242013-07-16 16:11:16 +000071 if (progress) {
72 outputProgress(state.fPathStr, pathStr, (SkPathOp) op);
73 }
caryclark38a017b2015-05-13 10:13:17 -070074 testPathOp(state.fReporter, pathA, pathB, (SkPathOp) op, "rects");
caryclark@google.com66089e42013-04-10 15:55:37 +000075 }
76 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +000077 }
78 }
79 }
caryclark@google.com66089e42013-04-10 15:55:37 +000080 }
81 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +000082}
83
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +000084DEF_TEST(PathOpsRectsThreaded, reporter) {
mtklein406654b2014-09-03 15:34:37 -070085 initializeTests(reporter, "testOp");
86 PathOpsThreadedTestRunner testRunner(reporter);
caryclark@google.com818b0cc2013-04-08 11:50:46 +000087 for (int a = 0; a < 6; ++a) { // outermost
88 for (int b = a + 1; b < 7; ++b) {
89 for (int c = 0 ; c < 6; ++c) {
90 for (int d = c + 1; d < 7; ++d) {
caryclark@google.com66089e42013-04-10 15:55:37 +000091 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreadedRunnable,
92 (&testPathOpsRectsMain, a, b, c, d, &testRunner));
caryclark@google.com818b0cc2013-04-08 11:50:46 +000093 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +000094 }
caryclark@google.com66089e42013-04-10 15:55:37 +000095 if (!reporter->allowExtendedTest()) goto finish;
caryclark@google.com818b0cc2013-04-08 11:50:46 +000096 }
caryclark@google.com818b0cc2013-04-08 11:50:46 +000097 }
98finish:
caryclark@google.com66089e42013-04-10 15:55:37 +000099 testRunner.render();
caryclark@google.com818b0cc2013-04-08 11:50:46 +0000100}