shape ops work in progress
mostly working on cubic/cubic intersect
git-svn-id: http://skia.googlecode.com/svn/trunk@7266 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersection_Tests.cpp b/experimental/Intersection/Intersection_Tests.cpp
index 6bad957..8e6e63e 100644
--- a/experimental/Intersection/Intersection_Tests.cpp
+++ b/experimental/Intersection/Intersection_Tests.cpp
@@ -15,9 +15,12 @@
void Intersection_Tests() {
int testsRun = 0;
+ QuadraticIntersection_Test();
+ CubicIntersection_OneOffTest();
+ CubicIntersection_RandTest();
+ SimplifyNew_Test();
CubicsToQuadratics_RandTest();
CubicToQuadratics_Test();
- SimplifyNew_Test();
Simplify4x4RectsThreaded_Test(testsRun);
Simplify4x4QuadraticsThreaded_Test(testsRun);
QuadLineIntersectThreaded_Test(testsRun);
@@ -26,7 +29,6 @@
Simplify4x4QuadralateralsThreaded_Test(testsRun);
ShapeOps4x4RectsThreaded_Test(testsRun);
SkDebugf("%s total testsRun=%d\n", __FUNCTION__, testsRun);
- QuadraticIntersection_Test();
LineQuadraticIntersection_Test();
MiniSimplify_Test();
SimplifyAngle_Test();