| Index: src/pathops/SkPathOpsOp.cpp
|
| diff --git a/src/pathops/SkPathOpsOp.cpp b/src/pathops/SkPathOpsOp.cpp
|
| index 71ebef00b303521bd5c5226e860ef8312d560384..9d6cd51b45842dcff687a921617143bf0d29ff7b 100644
|
| --- a/src/pathops/SkPathOpsOp.cpp
|
| +++ b/src/pathops/SkPathOpsOp.cpp
|
| @@ -304,20 +304,7 @@ bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result) {
|
| for (index = 0; index < contourList.count(); ++index) {
|
| total += contourList[index]->segments().count();
|
| }
|
| -#if DEBUG_SHOW_WINDING
|
| - SkOpContour::debugShowWindingValues(contourList);
|
| -#endif
|
| - CoincidenceCheck(&contourList, total);
|
| -#if DEBUG_SHOW_WINDING
|
| - SkOpContour::debugShowWindingValues(contourList);
|
| -#endif
|
| - FixOtherTIndex(&contourList);
|
| - CheckEnds(&contourList);
|
| - CheckTiny(&contourList);
|
| - SortSegments(&contourList);
|
| -#if DEBUG_ACTIVE_SPANS || DEBUG_ACTIVE_SPANS_FIRST_ONLY
|
| - DebugShowActiveSpans(contourList);
|
| -#endif
|
| + HandleCoincidence(&contourList, total);
|
| // construct closed contours
|
| SkPathWriter wrapper(*result);
|
| bridgeOp(contourList, op, xorMask, xorOpMask, &wrapper);
|
|
|