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" | |
10 | 9 |
11 static void testSimplifyQuadsMain(PathOpsThreadState* data) | 10 static void testSimplifyQuadsMain(PathOpsThreadState* data) |
12 { | 11 { |
13 SkASSERT(data); | 12 SkASSERT(data); |
14 PathOpsThreadState& state = *data; | 13 PathOpsThreadState& state = *data; |
15 char pathStr[1024]; | 14 char pathStr[1024]; |
16 bool progress = state.fReporter->verbose(); // FIXME: break out into its own
parameter? | 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own
parameter? |
17 if (progress) { | 16 if (progress) { |
18 sk_bzero(pathStr, sizeof(pathStr)); | 17 sk_bzero(pathStr, sizeof(pathStr)); |
19 } | 18 } |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, | 84 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, |
86 (&testSimplifyQuadsMain, a, b, c, d, &testRunner)); | 85 (&testSimplifyQuadsMain, a, b, c, d, &testRunner)); |
87 } | 86 } |
88 if (!reporter->allowExtendedTest()) goto finish; | 87 if (!reporter->allowExtendedTest()) goto finish; |
89 } | 88 } |
90 } | 89 } |
91 } | 90 } |
92 finish: | 91 finish: |
93 testRunner.render(); | 92 testRunner.render(); |
94 } | 93 } |
OLD | NEW |