| Index: src/pathops/SkPathOpsSimplify.cpp
|
| diff --git a/src/pathops/SkPathOpsSimplify.cpp b/src/pathops/SkPathOpsSimplify.cpp
|
| index 14fde4f9a4d4a81eddcc504afc412e552f4e4ad9..34b19d1fe2a0e73b74cbb12f19d75c6699f0a542 100644
|
| --- a/src/pathops/SkPathOpsSimplify.cpp
|
| +++ b/src/pathops/SkPathOpsSimplify.cpp
|
| @@ -176,7 +176,7 @@ bool Simplify(const SkPath& path, SkPath* result) {
|
| return false;
|
| }
|
| #if DEBUG_DUMP_SEGMENTS
|
| - contour.dumpSegments((SkPathOp) -1);
|
| + contour.dumpSegments();
|
| #endif
|
| if (!SortContourList(&contourList, false, false)) {
|
| result->reset();
|
| @@ -196,6 +196,9 @@ bool Simplify(const SkPath& path, SkPath* result) {
|
| if (!HandleCoincidence(contourList, &coincidence, &allocator)) {
|
| return false;
|
| }
|
| +#if DEBUG_DUMP_ALIGNMENT
|
| + contour.dumpSegments("aligned");
|
| +#endif
|
| // construct closed contours
|
| result->reset();
|
| result->setFillType(fillType);
|
|
|