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

Unified Diff: tests/PathOpsOpTest.cpp

Issue 1322413002: remove unused fields from SkOpSegment (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/PathOpsCubicIntersectionTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/PathOpsOpTest.cpp
diff --git a/tests/PathOpsOpTest.cpp b/tests/PathOpsOpTest.cpp
index 2fb86698064e502e7b3c607fd14a19d892a1fd05..a28bae8b1589a3342e559f6682abadd60db29552 100644
--- a/tests/PathOpsOpTest.cpp
+++ b/tests/PathOpsOpTest.cpp
@@ -3845,8 +3845,7 @@ static void cubicOp130(skiatest::Reporter* reporter, const char* filename) {
static void complex_to_quads(const SkPoint pts[], SkPath* path) {
SkScalar loopT;
- SkDCubic::CubicType dType;
- if (SkDCubic::ComplexBreak(pts, &loopT, &dType)) {
+ if (SkDCubic::ComplexBreak(pts, &loopT)) {
SkPoint cubicPair[7];
SkChopCubicAt(pts, cubicPair, loopT);
SkDCubic c1, c2;
« no previous file with comments | « tests/PathOpsCubicIntersectionTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698