aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/Intersection/SimplifyNew_Test.cpp
diff options
context:
space:
mode:
authorGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-28 19:25:51 +0000
committerGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-28 19:25:51 +0000
commit85ec74ca543b13739db1ad55dedd7bdfae4ab1a6 (patch)
treec95ad2b6024924bb12ed3c12b9a7263613c65c7f /experimental/Intersection/SimplifyNew_Test.cpp
parente219baf74742ee5cda3c99fabe6acaa8f878fe00 (diff)
shape ops work in progress
good checkpoint: nearly all tests pass solidly here git-svn-id: http://skia.googlecode.com/svn/trunk@7420 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/Intersection/SimplifyNew_Test.cpp')
-rw-r--r--experimental/Intersection/SimplifyNew_Test.cpp20
1 files changed, 17 insertions, 3 deletions
diff --git a/experimental/Intersection/SimplifyNew_Test.cpp b/experimental/Intersection/SimplifyNew_Test.cpp
index 823693c7e3..4cad7e106c 100644
--- a/experimental/Intersection/SimplifyNew_Test.cpp
+++ b/experimental/Intersection/SimplifyNew_Test.cpp
@@ -3536,12 +3536,26 @@ static void testCubic1() {
testSimplifyx(path);
}
+static void testQuadratic93() {
+ SkPath path;
+ path.moveTo(3, 0);
+ path.quadTo(0, 1, 3, 2);
+ path.lineTo(0, 3);
+ path.close();
+ path.moveTo(1, 0);
+ path.lineTo(2, 0);
+ path.quadTo(1, 1, 2, 2);
+ path.close();
+ testSimplifyx(path);
+}
+
static void (*firstTest)() = 0;
static struct {
void (*fun)();
const char* str;
} tests[] = {
+ TEST(testQuadratic93),
TEST(testCubic1),
TEST(testQuadralateral1),
TEST(testLine85),
@@ -3870,6 +3884,8 @@ static struct {
TEST(testLine1),
};
+static const size_t testCount = sizeof(tests) / sizeof(tests[0]);
+
static void testIntersect1() {
SkPath one, two;
one.addRect(0, 0, 6, 6, SkPath::kCW_Direction);
@@ -4034,8 +4050,6 @@ static void testOp8d() {
testShapeOp(path, pathB, kDifference_Op);
}
-static const size_t testCount = sizeof(tests) / sizeof(tests[0]);
-
static struct {
void (*fun)();
const char* str;
@@ -4065,7 +4079,7 @@ static const size_t subTestCount = sizeof(subTests) / sizeof(subTests[0]);
static void (*firstBinaryTest)() = testOp8d;
static bool skipAll = false;
-static bool runBinaryTestsFirst = true;
+static bool runBinaryTestsFirst = false;
static bool runReverse = false;
static void (*stopTest)() = 0;