| Index: src/pathops/SkOpContour.h
|
| diff --git a/src/pathops/SkOpContour.h b/src/pathops/SkOpContour.h
|
| index 6b412e5f53c979b33b16bd4d4769d0b173d23190..8cedab4cb1ebb0b5e35be9bcf4223c8b1183dea1 100644
|
| --- a/src/pathops/SkOpContour.h
|
| +++ b/src/pathops/SkOpContour.h
|
| @@ -72,10 +72,9 @@ public:
|
| return fSegments.count();
|
| }
|
|
|
| - int addT(int segIndex, SkOpContour* other, int otherIndex, const SkPoint& pt, double newT,
|
| - bool isNear) {
|
| + int addT(int segIndex, SkOpContour* other, int otherIndex, const SkPoint& pt, double newT) {
|
| setContainsIntercepts();
|
| - return fSegments[segIndex].addT(&other->fSegments[otherIndex], pt, newT, isNear);
|
| + return fSegments[segIndex].addT(&other->fSegments[otherIndex], pt, newT);
|
| }
|
|
|
| int addSelfT(int segIndex, SkOpContour* other, int otherIndex, const SkPoint& pt, double newT) {
|
|
|