shape ops work in progress
git-svn-id: http://skia.googlecode.com/svn/trunk@4089 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/SimplifyFindNext_Test.cpp b/experimental/Intersection/SimplifyFindNext_Test.cpp
index ffbe95e..e30908d 100644
--- a/experimental/Intersection/SimplifyFindNext_Test.cpp
+++ b/experimental/Intersection/SimplifyFindNext_Test.cpp
@@ -31,9 +31,10 @@
SkPoint pts[2];
double startT = segment.t(endIndex);
segment.xyAtT(startT, &pts[0]);
+ int nextStart, nextEnd;
SimplifyFindNextTest::Segment* next = segment.findNext(winding,
- startIndex, endIndex);
- double endT = next->t(startIndex);
+ startIndex, endIndex, nextStart, nextEnd);
+ double endT = next->t(nextStart);
next->xyAtT(endT, &pts[1]);
SkASSERT(pts[0] == pts[1]);
return next;