Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: tests/PathOpsOpCubicThreadedTest.cpp

Issue 1037573004: cumulative pathops patch (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix pathopsinverse gm Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/PathOpsLineIntersectionTest.cpp ('k') | tests/PathOpsOpLoopThreadedTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 #include "PathOpsExtendedTest.h" 7 #include "PathOpsExtendedTest.h"
8 #include "PathOpsThreadedCommon.h" 8 #include "PathOpsThreadedCommon.h"
9 9
10 static void testOpCubicsMain(PathOpsThreadState* data) { 10 static void testOpCubicsMain(PathOpsThreadState* data) {
11 #if DEBUG_SHOW_TEST_NAME 11 #if DEBUG_SHOW_TEST_NAME
12 strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH); 12 strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH);
13 #endif 13 #endif
14 SkASSERT(data); 14 SkASSERT(data);
15 PathOpsThreadState& state = *data; 15 PathOpsThreadState& state = *data;
16 char pathStr[1024]; // gdb: set print elements 400 16 char pathStr[1024]; // gdb: set print elements 400
17 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 17 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
18 if (progress) { 18 if (progress) {
19 sk_bzero(pathStr, sizeof(pathStr)); 19 sk_bzero(pathStr, sizeof(pathStr));
20 } 20 }
21 for (int a = 0 ; a < 6; ++a) { 21 for (int a = 0 ; a < 6; ++a) {
22 for (int b = a + 1 ; b < 7; ++b) { 22 for (int b = a + 1 ; b < 7; ++b) {
23 for (int c = 0 ; c < 6; ++c) { 23 for (int c = 0 ; c < 6; ++c) {
24 for (int d = c + 1 ; d < 7; ++d) { 24 for (int d = c + 1 ; d < 7; ++d) {
25 for (int e = SkPath::kWinding_FillType ; e <= SkPath::kEvenO dd_FillType; ++e) { 25 for (int e = SkPath::kWinding_FillType ; e <= SkPath::kEvenO dd_FillType; ++e) {
26 for (int f = SkPath::kWinding_FillType ; f <= SkPath::kEvenOdd_FillType; ++f ) { 26 for (int f = SkPath::kWinding_FillType ; f <= SkPath::kEvenOdd_FillType; ++f ) {
27 SkPath pathA, pathB; 27 SkPath pathA, pathB;
28 if (progress) { 28 if (progress) {
29 char* str = pathStr; 29 char* str = pathStr;
30 const int loopNo = 129;
31 str += sprintf(str, "static void cubicOp%d(skiatest::Reporter* repor ter,"
32 " const char* filename) {\n", loopNo);
33 str += sprintf(str, " SkPath path, pathB;\n");
30 str += sprintf(str, " path.setFillType(SkPath::k%s_FillType);\n", 34 str += sprintf(str, " path.setFillType(SkPath::k%s_FillType);\n",
31 e == SkPath::kWinding_FillType ? "Winding" : e == SkPath::kE venOdd_FillType 35 e == SkPath::kWinding_FillType ? "Winding" : e == SkPath::kE venOdd_FillType
32 ? "EvenOdd" : "?UNDEFINED"); 36 ? "EvenOdd" : "?UNDEFINED");
33 str += sprintf(str, " path.moveTo(%d,%d);\n", state.fA, state.fB) ; 37 str += sprintf(str, " path.moveTo(%d,%d);\n", state.fA, state.fB) ;
34 str += sprintf(str, " path.cubicTo(%d,%d, %d,%d, %d,%d);\n", stat e.fC, state.fD, 38 str += sprintf(str, " path.cubicTo(%d,%d, %d,%d, %d,%d);\n", stat e.fC, state.fD,
35 b, a, d, c); 39 b, a, d, c);
36 str += sprintf(str, " path.close();\n"); 40 str += sprintf(str, " path.close();\n");
37 str += sprintf(str, " pathB.setFillType(SkPath::k%s_FillType);\n" , 41 str += sprintf(str, " pathB.setFillType(SkPath::k%s_FillType);\n" ,
38 f == SkPath::kWinding_FillType ? "Winding" : f == SkPath::kE venOdd_FillType 42 f == SkPath::kWinding_FillType ? "Winding" : f == SkPath::kE venOdd_FillType
39 ? "EvenOdd" : "?UNDEFINED"); 43 ? "EvenOdd" : "?UNDEFINED");
40 str += sprintf(str, " pathB.moveTo(%d,%d);\n", a, b); 44 str += sprintf(str, " pathB.moveTo(%d,%d);\n", a, b);
41 str += sprintf(str, " pathB.cubicTo(%d,%d, %d,%d, %d,%d);\n", c, d, 45 str += sprintf(str, " pathB.cubicTo(%d,%d, %d,%d, %d,%d);\n", c, d,
42 state.fB, state.fA, state.fD, state.fC); 46 state.fB, state.fA, state.fD, state.fC);
43 str += sprintf(str, " pathB.close();\n"); 47 str += sprintf(str, " pathB.close();\n");
48 str += sprintf(str, " testPathOp(reporter, path, pathB, kDifferen ce_SkPathOp,"
49 " filename);\n");
50 str += sprintf(str, "}\n");
44 } 51 }
45 pathA.setFillType((SkPath::FillType) e); 52 pathA.setFillType((SkPath::FillType) e);
46 pathA.moveTo(SkIntToScalar(state.fA), SkIntToScalar(state.fB)); 53 pathA.moveTo(SkIntToScalar(state.fA), SkIntToScalar(state.fB));
47 pathA.cubicTo(SkIntToScalar(state.fC), SkIntToScalar(state.fD), SkIntToS calar(b), 54 pathA.cubicTo(SkIntToScalar(state.fC), SkIntToScalar(state.fD), SkIntToS calar(b),
48 SkIntToScalar(a), SkIntToScalar(d), SkIntToScalar(c)); 55 SkIntToScalar(a), SkIntToScalar(d), SkIntToScalar(c));
49 pathA.close(); 56 pathA.close();
50 pathB.setFillType((SkPath::FillType) f); 57 pathB.setFillType((SkPath::FillType) f);
51 pathB.moveTo(SkIntToScalar(a), SkIntToScalar(b)); 58 pathB.moveTo(SkIntToScalar(a), SkIntToScalar(b));
52 pathB.cubicTo(SkIntToScalar(c), SkIntToScalar(d), SkIntToScalar(state.fB ), 59 pathB.cubicTo(SkIntToScalar(c), SkIntToScalar(d), SkIntToScalar(state.fB ),
53 SkIntToScalar(state.fA), SkIntToScalar(state.fD), SkIntToScalar( state.fC)); 60 SkIntToScalar(state.fA), SkIntToScalar(state.fD), SkIntToScalar( state.fC));
54 pathB.close(); 61 pathB.close();
55 for (int op = 0 ; op <= kXOR_PathOp; ++op) { 62 for (int op = 0 ; op <= kXOR_SkPathOp; ++op) {
56 if (progress) { 63 if (progress) {
57 outputProgress(state.fPathStr, pathStr, (SkPathOp) op); 64 outputProgress(state.fPathStr, pathStr, (SkPathOp) op);
58 } 65 }
59 testThreadedPathOp(state.fReporter, pathA, pathB, (SkPathOp) op, "cu bics"); 66 testThreadedPathOp(state.fReporter, pathA, pathB, (SkPathOp) op, "cu bics");
60 } 67 }
61 } 68 }
62 } 69 }
63 } 70 }
64 } 71 }
65 } 72 }
(...skipping 11 matching lines...) Expand all
77 (&testOpCubicsMain, a, b, c, d, &testRunner)); 84 (&testOpCubicsMain, a, b, c, d, &testRunner));
78 } 85 }
79 } 86 }
80 if (!reporter->allowExtendedTest()) goto finish; 87 if (!reporter->allowExtendedTest()) goto finish;
81 } 88 }
82 } 89 }
83 finish: 90 finish:
84 testRunner.render(); 91 testRunner.render();
85 ShowTestArray(); 92 ShowTestArray();
86 } 93 }
OLDNEW
« no previous file with comments | « tests/PathOpsLineIntersectionTest.cpp ('k') | tests/PathOpsOpLoopThreadedTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698