shape ops work in progress
git-svn-id: http://skia.googlecode.com/svn/trunk@6159 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/SimplifyFindTop_Test.cpp b/experimental/Intersection/SimplifyFindTop_Test.cpp
index 11b083f..0c30b2e 100644
--- a/experimental/Intersection/SimplifyFindTop_Test.cpp
+++ b/experimental/Intersection/SimplifyFindTop_Test.cpp
@@ -32,7 +32,9 @@
const SimplifyFindTopTest::Segment* topSegment = topStart->findTop(index,
end);
#else
- const SimplifyFindTopTest::Segment* topSegment = findSortableTop(contourList, index, end);
+ SkPoint bestXY = {SK_ScalarMin, SK_ScalarMin};
+ const SimplifyFindTopTest::Segment* topSegment =
+ findSortableTop(contourList, index, end, bestXY);
#endif
return topSegment;
}