Index: src/pathops/SkAddIntersections.cpp |
diff --git a/src/pathops/SkAddIntersections.cpp b/src/pathops/SkAddIntersections.cpp |
index 035a50e4aa925fcae27b414c9dce793b2ab645f8..620842bf8c8e61e49dc1511778132b14d7ce5517 100644 |
--- a/src/pathops/SkAddIntersections.cpp |
+++ b/src/pathops/SkAddIntersections.cpp |
@@ -424,8 +424,8 @@ void AddSelfIntersectTs(SkOpContour* test) { |
SkASSERT(ts[0][0] >= 0 && ts[0][0] <= 1); |
SkASSERT(ts[1][0] >= 0 && ts[1][0] <= 1); |
SkPoint point = ts.pt(0).asSkPoint(); |
- int testTAt = wt.addSelfT(wt, point, ts[0][0]); |
- int nextTAt = wt.addT(wt, point, ts[1][0]); |
+ int testTAt = wt.addSelfT(point, ts[0][0]); |
+ int nextTAt = wt.addSelfT(point, ts[1][0]); |
wt.addOtherT(testTAt, ts[1][0], nextTAt); |
wt.addOtherT(nextTAt, ts[0][0], testTAt); |
} while (wt.advance()); |