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

Side by Side Diff: tests/PathOpsSimplifyDegenerateThreadedTest.cpp

Issue 1316123003: Style Change: SkNEW->new; SkDELETE->delete (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-26 (Wednesday) 15:59:00 EDT Created 5 years, 3 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
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 testSimplifyDegeneratesMain(PathOpsThreadState* data) { 10 static void testSimplifyDegeneratesMain(PathOpsThreadState* data) {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 for (int a = 0; a < 16; ++a) { 73 for (int a = 0; a < 16; ++a) {
74 int ax = a & 0x03; 74 int ax = a & 0x03;
75 int ay = a >> 2; 75 int ay = a >> 2;
76 for (int b = a ; b < 16; ++b) { 76 for (int b = a ; b < 16; ++b) {
77 int bx = b & 0x03; 77 int bx = b & 0x03;
78 int by = b >> 2; 78 int by = b >> 2;
79 for (int c = a ; c < 16; ++c) { 79 for (int c = a ; c < 16; ++c) {
80 int cx = c & 0x03; 80 int cx = c & 0x03;
81 int cy = c >> 2; 81 int cy = c >> 2;
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax); 82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
83 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreadedRunn able, 83 *testRunner.fRunnables.append() = new PathOpsThreadedRunnable(
84 (&testSimplifyDegeneratesMain, a, b, c, abcIsATriangle, 84 &testSimplifyDegeneratesMain, a, b, c, abcIsATriangle, & testRunner);
85 &testRunner));
86 } 85 }
87 if (!reporter->allowExtendedTest()) goto finish; 86 if (!reporter->allowExtendedTest()) goto finish;
88 } 87 }
89 } 88 }
90 finish: 89 finish:
91 testRunner.render(); 90 testRunner.render();
92 } 91 }
OLDNEW
« no previous file with comments | « tests/PathOpsQuadLineIntersectionThreadedTest.cpp ('k') | tests/PathOpsSimplifyQuadThreadedTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698