shape ops work in progress

git-svn-id: http://skia.googlecode.com/svn/trunk@3801 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp b/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp
index fff07da..f920eba 100644
--- a/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp
+++ b/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp
@@ -7,6 +7,7 @@
 #include "SkTDArray.h"
 #include "ShapeOps.h"
 #include "TSearch.h"
+#include <algorithm> // used for std::min
 
 namespace SimplifyAddIntersectingTsTest {
 
@@ -88,7 +89,7 @@
     }
     SimplifyAddIntersectingTsTest::Contour& c1 = contour[0];
     SimplifyAddIntersectingTsTest::Contour& c2 = contour[1];
-    addIntersectingTs(&c1, &c2);
+    addIntersectTs(&c1, &c2, 1);
     bool c1Intersected = c1.fSegments[0].intersected();
     bool c2Intersected = c2.fSegments[0].intersected();
 #if DEBUG_DUMP