| OLD | NEW |
| 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 #include "TestClassDef.h" |
| 9 | 10 |
| 10 static void testSimplifyQuadralateralsMain(PathOpsThreadState* data) | 11 static void testSimplifyQuadralateralsMain(PathOpsThreadState* data) |
| 11 { | 12 { |
| 12 SkASSERT(data); | 13 SkASSERT(data); |
| 13 PathOpsThreadState& state = *data; | 14 PathOpsThreadState& state = *data; |
| 14 char pathStr[1024]; | 15 char pathStr[1024]; |
| 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own
parameter? | 16 bool progress = state.fReporter->verbose(); // FIXME: break out into its own
parameter? |
| 16 if (progress) { | 17 if (progress) { |
| 17 sk_bzero(pathStr, sizeof(pathStr)); | 18 sk_bzero(pathStr, sizeof(pathStr)); |
| 18 } | 19 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 if (progress) { | 69 if (progress) { |
| 69 outputProgress(state.fPathStr, pathStr, SkPath::kEvenOdd
_FillType); | 70 outputProgress(state.fPathStr, pathStr, SkPath::kEvenOdd
_FillType); |
| 70 } | 71 } |
| 71 testSimplify(path, true, out, state, pathStr); | 72 testSimplify(path, true, out, state, pathStr); |
| 72 } | 73 } |
| 73 } | 74 } |
| 74 } | 75 } |
| 75 } | 76 } |
| 76 } | 77 } |
| 77 | 78 |
| 78 static void PathOpsSimplifyQuadralateralsThreadedTest(skiatest::Reporter* report
er) { | 79 DEF_TEST(PathOpsSimplifyQuadralateralsThreaded, reporter) { |
| 79 int threadCount = initializeTests(reporter, "testQuadralaterals"); | 80 int threadCount = initializeTests(reporter, "testQuadralaterals"); |
| 80 PathOpsThreadedTestRunner testRunner(reporter, threadCount); | 81 PathOpsThreadedTestRunner testRunner(reporter, threadCount); |
| 81 for (int a = 0; a < 16; ++a) { | 82 for (int a = 0; a < 16; ++a) { |
| 82 for (int b = a ; b < 16; ++b) { | 83 for (int b = a ; b < 16; ++b) { |
| 83 for (int c = b ; c < 16; ++c) { | 84 for (int c = b ; c < 16; ++c) { |
| 84 for (int d = c; d < 16; ++d) { | 85 for (int d = c; d < 16; ++d) { |
| 85 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, | 86 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, |
| 86 (&testSimplifyQuadralateralsMain, a, b, c, d, &testR
unner)); | 87 (&testSimplifyQuadralateralsMain, a, b, c, d, &testR
unner)); |
| 87 } | 88 } |
| 88 if (!reporter->allowExtendedTest()) goto finish; | 89 if (!reporter->allowExtendedTest()) goto finish; |
| 89 } | 90 } |
| 90 } | 91 } |
| 91 } | 92 } |
| 92 finish: | 93 finish: |
| 93 testRunner.render(); | 94 testRunner.render(); |
| 94 } | 95 } |
| 95 | |
| 96 #include "TestClassDef.h" | |
| 97 DEFINE_TESTCLASS_SHORT(PathOpsSimplifyQuadralateralsThreadedTest) | |
| OLD | NEW |