shape ops work in progress
git-svn-id: http://skia.googlecode.com/svn/trunk@7453 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/EdgeDemo.cpp b/experimental/Intersection/EdgeDemo.cpp
index 841678a..684dfd9 100644
--- a/experimental/Intersection/EdgeDemo.cpp
+++ b/experimental/Intersection/EdgeDemo.cpp
@@ -150,6 +150,7 @@
return drawPaths(canvas, path, useOld);
}
+#if 0
static void tryRoncoOnce(const SkPath& path, const SkRect& target, bool show) {
// capture everything in a desired rectangle
SkPath tiny;
@@ -226,7 +227,9 @@
}
testSimplifyx(tiny);
}
+#endif
+#if 0
static void tryRonco(const SkPath& path) {
int divMax = 64;
int divMin = 1;
@@ -261,6 +264,7 @@
}
}
}
+#endif
static bool drawLetters(SkCanvas* canvas, int step, bool useOld)
{
@@ -329,7 +333,7 @@
static size_t drawDemosCount = sizeof(drawDemos) / sizeof(drawDemos[0]);
-static bool (*firstTest)(SkCanvas* , int , bool) = drawLetters;
+static bool (*firstTest)(SkCanvas* , int , bool) = drawStars;
bool DrawEdgeDemo(SkCanvas* canvas, int step, bool useOld) {