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 | 9 |
10 static void testSimplifyQuadsMain(PathOpsThreadState* data) | 10 static void testSimplifyQuadsMain(PathOpsThreadState* data) |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 for (int d = c; d < 16; ++d) { | 83 for (int d = c; d < 16; ++d) { |
84 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, | 84 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, |
85 (&testSimplifyQuadsMain, a, b, c, d, &testRunner)); | 85 (&testSimplifyQuadsMain, a, b, c, d, &testRunner)); |
86 } | 86 } |
87 if (!reporter->allowExtendedTest()) goto finish; | 87 if (!reporter->allowExtendedTest()) goto finish; |
88 } | 88 } |
89 } | 89 } |
90 } | 90 } |
91 finish: | 91 finish: |
92 testRunner.render(); | 92 testRunner.render(); |
| 93 ShowTestArray(); |
93 } | 94 } |
OLD | NEW |