Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: tests/PathOpsSkpTest.cpp

Issue 252243003: fix cubic/line intersection; add skp tests (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: bracket new test correctly Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/PathOpsOpTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/PathOpsSkpTest.cpp
diff --git a/tests/PathOpsSkpTest.cpp b/tests/PathOpsSkpTest.cpp
index 290b19ac39a6b5b5f3e1367a9849ed80717ad567..f4425dae27bd882af8f0147a201424f10ff2906e 100755
--- a/tests/PathOpsSkpTest.cpp
+++ b/tests/PathOpsSkpTest.cpp
@@ -2962,9 +2962,57 @@ static void skpwww_defense_studies_blogspot_com_64(skiatest::Reporter* reporter,
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename);
}
-static void (*firstTest)(skiatest::Reporter* , const char* filename) = 0;
-
-static struct TestDesc tests[] = {
+// checkSmall / addTPair / addT assert
+#if TRY_NEW_TESTS
+static void skpwww_uniquefx_net_442(skiatest::Reporter* reporter, const char* filename) {
+ SkPath path;
+ path.setFillType(SkPath::kEvenOdd_FillType);
+ path.moveTo(960, 306);
+ path.lineTo(960, 305);
+ path.lineTo(1000, 305);
+ path.lineTo(1000, 306.708527f);
+ path.lineTo(960, 306);
+ path.close();
+ SkPath pathB;
+ pathB.setFillType(SkPath::kWinding_FillType);
+ pathB.moveTo(960, 305);
+ pathB.lineTo(958.997253f, 306.002747f);
+ pathB.lineTo(1017, 307);
+ pathB.lineTo(1019, 305);
+ testPathOp(reporter, path, pathB, kIntersect_PathOp, filename);
+}
+#endif
+
+// rightAngleWinding
+#if TRY_NEW_TESTS
+static void skpwww_kitcheninspirations_wordpress_com_32(skiatest::Reporter* reporter, const char* filename) {
+ SkPath path;
+ path.setFillType(SkPath::kEvenOdd_FillType);
+ path.moveTo(47.1666679f, 19651.334f);
+ path.lineTo(65.8333359f, 19651.332f);
+ path.lineTo(65.8333359f, 19651.5f);
+ path.lineTo(47.1666679f, 19651.5f);
+ path.lineTo(47.1666679f, 19651.334f);
+ path.close();
+ SkPath pathB;
+ pathB.setFillType(SkPath::kWinding_FillType);
+ pathB.moveTo(47.1666679f, 19651.5f);
+ pathB.lineTo(47.1666679f, 19651.332f);
+ pathB.lineTo(65.8333359f, 19651.334f);
+ pathB.lineTo(65.8333359f, 19651.5f);
+ testPathOp(reporter, path, pathB, kIntersect_PathOp, filename);
+}
+#endif
+
+static void (*firstTest)(skiatest::Reporter* , const char* filename) = 0;
+
+static struct TestDesc tests[] = {
+#if TRY_NEW_TESTS
+ TEST(skpwww_kitcheninspirations_wordpress_com_32), // rightanglewinding
+#endif
+#if TRY_NEW_TESTS
+ TEST(skpwww_uniquefx_net_442), // checkSmall / addTPair / addT assert
+#endif
TEST(skpwww_defense_studies_blogspot_com_64),
TEST(skpwww_kenlevine_blogspot_com_28),
TEST(skpwww_fashionscandal_com_94),
« no previous file with comments | « tests/PathOpsOpTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698