shape ops work in progress
git-svn-id: http://skia.googlecode.com/svn/trunk@7758 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/LineQuadraticIntersection_Test.cpp b/experimental/Intersection/LineQuadraticIntersection_Test.cpp
index 6c3986c..3e7e230 100644
--- a/experimental/Intersection/LineQuadraticIntersection_Test.cpp
+++ b/experimental/Intersection/LineQuadraticIntersection_Test.cpp
@@ -95,7 +95,7 @@
const _Line& line = lineQuadTests[index].line;
Quadratic reduce1;
_Line reduce2;
- int order1 = reduceOrder(quad, reduce1);
+ int order1 = reduceOrder(quad, reduce1, kReduceOrder_TreatAsFill);
int order2 = reduceOrder(line, reduce2);
if (order1 < 3) {
SkDebugf("%s [%d] quad order=%d\n", __FUNCTION__, (int) index, order1);
@@ -189,7 +189,7 @@
int cy = state.c >> 2;
Quadratic quad = {{ax, ay}, {bx, by}, {cx, cy}};
Quadratic reduced;
- int order = reduceOrder(quad, reduced);
+ int order = reduceOrder(quad, reduced, kReduceOrder_TreatAsFill);
if (order < 3) {
continue; // skip degenerates
}