| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 int add_point(char* str, SkScalar x, SkScalar y) { | 10 static int add_point(char* str, SkScalar x, SkScalar y) { |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 for (int d = c + 1; d < 7; ++d) { | 101 for (int d = c + 1; d < 7; ++d) { |
| 102 *testRunner.fRunnables.append() = | 102 *testRunner.fRunnables.append() = |
| 103 new PathOpsThreadedRunnable(&testOpLoopsMain, a, b,
c, d, &testRunner); | 103 new PathOpsThreadedRunnable(&testOpLoopsMain, a, b,
c, d, &testRunner); |
| 104 } | 104 } |
| 105 } | 105 } |
| 106 if (!reporter->allowExtendedTest()) goto finish; | 106 if (!reporter->allowExtendedTest()) goto finish; |
| 107 } | 107 } |
| 108 } | 108 } |
| 109 finish: | 109 finish: |
| 110 testRunner.render(); | 110 testRunner.render(); |
| 111 ShowTestArray("loopOp"); | |
| 112 } | 111 } |
| OLD | NEW |