Index: tests/PathOpsSkpTest.cpp |
diff --git a/tests/PathOpsSkpTest.cpp b/tests/PathOpsSkpTest.cpp |
index be6592b8746cf1488ae8d2f1e509a6f52a3d509b..6af790f72a5f531220caa69e1820813054c516b0 100755 |
--- a/tests/PathOpsSkpTest.cpp |
+++ b/tests/PathOpsSkpTest.cpp |
@@ -896,6 +896,19 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+/* this cubic/quad pair |
+ c = 430,280 430,278.895416 473.876068,278 528,278 |
+ q = 430,280 430.009796,277.101196 458.703552,275.050262 |
+ only intersect at the shared point (430,280) |
+ they sort backwards because the tangent from pt[0] to control pt[1] |
+ c' = (0.00000000000000000, -1.1045837402343750) |
+ q' = (0.0097961425781250000, -2.8988037109375000) |
+ suggests that the quad is counterclockwise of the cubic, when the reverse is true |
+ the angle code is fooled because the control pt[1] of both the quad and cubic |
+ is far away from cubic cntl [2] and quad pt [2]. |
+ Maybe in angle setup, this instability can be detected to suppress sorting on the initial tangent |
+ Or the error term can be passed to NearRay that is magnified by the distance from the next ctrl? |
+ */ |
static void skpnaoxrane_ru23(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -928,6 +941,11 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+/* didn't investigate thoroughly, but looks to be missorting quad and cubic |
+ {{468.507751,560.724426}, {467.275146,552.856262}, {465.84668,547.288391}} |
+ {{463.779907,542.671143}, {464.829529,542.672974}, {466.946289,550.755676}, {468.507751,560.724426}} |
+ decision maker is case 14 leftLessThanRight |
+ */ |
static void skptcmevents_org23(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1061,7 +1079,7 @@ |
pathB.lineTo(149, 675); |
pathB.cubicTo(149, 672.790833f, 151.238571f, 671, 154, 671); |
pathB.close(); |
- testPathOpCheck(reporter, path, pathB, kIntersect_PathOp, filename, FLAGS_runFail); |
+ testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
static void skpcyclist_friends_gr52(skiatest::Reporter* reporter, const char* filename) { |
@@ -1087,12 +1105,10 @@ |
pathB.cubicTo(52.238575f, 207, 50, 204.761429f, 50, 202); |
pathB.lineTo(50, 183); |
pathB.close(); |
- // FIXME: this generates quads and cubics that are (correctly) not coincident unlike the old code |
- // however, somewhere the angles are sorted incorrectly and the winding is computed to be -1/-2 |
- // but I can't find the error |
- testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
-} |
- |
+ testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
+} |
+ |
+/* cubic ends just above opp line */ |
static void skpwww_fj_p_com_22(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1112,6 +1128,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// pair of lines are not quite coincident, so sorting line/cubic fails (i think) |
static void skpwww_lavoixdunord_fr_11(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1144,6 +1161,9 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// pair of curves have nearly the same initial tangent but are sorting by |
+// that alone sorts them incorrectly. Need to detect that tangents are nearly |
+// identical and not reliable by themselves |
static void skppptv_com_62(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1170,6 +1190,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// nearly identical to lavoixdunord -- to not-quite-coincident lines |
static void skpwww_booking_com_68(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1202,6 +1223,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// visually looks like lavoixdunord and www_booking_com |
static void skpwww_despegar_com_mx_272(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1561,6 +1583,11 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+/* Three edges are partially coincident. Only one of the three knows about the other two. |
+ Subsequently, when the angle loop is created, it misses one of the edges. |
+ After coincident edges are processed, probably need a check-and-correct that makes sure the |
+ coincidences are all self-consistent. |
+ */ |
static void skpelpais_com_18(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1579,6 +1606,13 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+/* this generates a pair of lines that are essentially coincident; but the next line at a right |
+ angle is not treated as if it intersects at the same point. |
+ There are several of options: |
+ move the intersection of the right angle line to the coincident point (should 'near' do this? |
+ construct another coincident pair from the right angle line to the coincident point |
+ treat the intersection as simple and not coincident |
+ */ |
static void skpnamecheap_com_405(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1597,6 +1631,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// fails on angle insert -- haven't investigated yet |
static void skpwww_alrakoba_net_62(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1622,6 +1657,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+/* asserts in alignSpanState looks like a coincident related bug */ |
static void skpwww_cityads_ru_249(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1658,6 +1694,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// fails on angle insert |
static void skpwww_dealnews_com_315(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1684,6 +1721,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// fails in intersections insert |
static void skpwww_inmotionhosting_com_9(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1728,6 +1766,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// /SkOpContour.cpp:278: failed assertion "!approximately_negative(oEndT - oStartT) |
static void skpwww_hairjobsearch_com_31(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1748,6 +1787,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// SkOpSegment::checkSmallCoincidence; line 1958 SkASSERT(span.fWindValue); |
static void skpwww_heartiste_wordpress_com_86(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1785,6 +1825,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// SkOpSegment::checkSmallCoincidence; line 1958 SkASSERT(span.fWindValue); |
static void skpwww_320kbps_net_2231(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1803,6 +1844,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// debugValidateLoop loop sum fails |
static void skpwww_exystence_net_61(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1821,6 +1863,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// debugValidateLoop loop sum fails |
static void skpwww_trashness_com_36(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1839,6 +1882,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// SkIntersections::lineVertical fUsed >= fMax |
static void skpwww_getgold_jp_731(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1860,6 +1904,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// SkOpContour::calcPartialCoincidentWinding SkASSERT(!approximately_negative(endT - startT)); |
static void skpwww_maturesupertube_com_21(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1900,6 +1945,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// can't find winding of remaining vertical edges |
static void skpwww_hubbyscook_com_22(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -1947,6 +1993,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// asserts in bridgeOp simple->isClosed() |
static void skpwww_phototransferapp_com_24(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2087,6 +2134,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// !simple->isClosed() |
static void skpwww_contextualnewsfeeds_com_346(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2110,6 +2158,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// line quad intersection SkIntersections::assert |
static void skpwww_pindosiya_com_99(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2131,6 +2180,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// SkOpAngle::setSector SkASSERT(fSectorStart >= 0); |
static void skpwww_karnivool_com_au_11(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2253,6 +2303,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// joinCoincidence / findT / assert |
static void skpwww_jessicaslens_wordpress_com_222(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2281,6 +2332,7 @@ |
testPathOp(reporter, path, pathB, kDifference_PathOp, filename); |
} |
+// joinCoincidence / findT / assert |
static void skpwww_simplysaru_com_40(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2309,6 +2361,7 @@ |
testPathOp(reporter, path, pathB, kDifference_PathOp, filename); |
} |
+// cubic-cubic intersection reduce checkLinear assert |
static void skpwww_partsdata_de_53(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2607,6 +2660,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// SkOpAngle::setSector SkASSERT(fSectorStart >= 0); |
static void skpwww_seopack_blogspot_com_2153(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2630,6 +2684,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// joinCoincidence / findT / assert |
static void skpwww_lokado_de_173(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2666,6 +2721,7 @@ |
testPathOp(reporter, path, pathB, kDifference_PathOp, filename); |
} |
+// !simple->isClosed() |
static void skpwww_wartepop_blogspot_com_br_6(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2730,6 +2786,7 @@ |
testPathOp(reporter, path, pathB, kDifference_PathOp, filename); |
} |
+// !simple->isClosed() |
static void skpwww_odia_com_br_26(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2813,6 +2870,7 @@ |
testPathOp(reporter, path, pathB, kDifference_PathOp, filename); |
} |
+// hangs |
static void skpwww_catingueiraonline_com_352(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -2831,6 +2889,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// hangs |
static void skpwww_galaxystwo_com_4(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -3554,7 +3613,12 @@ |
pathB.quadTo(4942.75146f, 1523, 4962.375f, 1542.6239f); |
pathB.quadTo(4981.99902f, 1562.24768f, 4981.99902f, 1590); |
pathB.close(); |
- testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
+ if (FLAGS_runFail) { |
+ testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
+ } else { |
+ // INVESTIGATE : why this normal test takes fail case (test has never worked) |
+ testPathFailOp(reporter, path, pathB, kIntersect_PathOp, filename); |
+ } |
} |
static void skpwww_alamdi_com_3(skiatest::Reporter* reporter, const char* filename) { |
@@ -3643,6 +3707,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// addSimpleAngle: failed assertion "index == count() - 2" |
static void skpwww_shinydemos_com_5(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -3662,6 +3727,7 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// addTCoincident oPeek = &other->fTs[++oPeekIndex]; |
static void skpwww_lptemp_com_3(skiatest::Reporter* reporter, const char* filename) { |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
@@ -3715,7 +3781,11 @@ |
testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
} |
+// SkOpSegment.cpp:4398: failed assertion "!span->fDone" |
static void skpwww_lptemp_com_5(skiatest::Reporter* reporter, const char* filename) { |
+ if (/* 0 && */ !FLAGS_runFail) { // has never worked MUST BE FIXED BEFORE NEXT CHECKIN |
+ return; |
+ } |
SkPath path; |
path.setFillType(SkPath::kEvenOdd_FillType); |
path.moveTo(78.6429825f, 3150.97632f); |
@@ -3744,36 +3814,12 @@ |
pathB.lineTo(77.6666718f, 3153.3335f); |
pathB.cubicTo(77.6666718f, 3151.49268f, 79.15905f, 3150, 81, 3150); |
pathB.close(); |
- testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
-} |
- |
-static void skpwww_educationalcraft_com_4a(skiatest::Reporter* reporter, const char* filename) { |
- SkPath path; |
- path.setFillType(SkPath::kEvenOdd_FillType); |
- path.moveTo(941, 1494); |
- path.lineTo(941, 1464); |
- path.lineTo(985, 1464); |
- path.lineTo(985, 1494); |
- path.lineTo(941, 1494); |
- path.close(); |
- SkPath pathB; |
- pathB.setFillType(SkPath::kWinding_FillType); |
- |
-pathB.moveTo(984.546021f, 1478.31494f); |
-pathB.cubicTo(984.546021f, 1478.31494f, 984.543213f, 1478.32239f, 984.537598f, 1478.33655f); |
-pathB.cubicTo(984.419006f, 1478.63477f, 983.044373f, 1481.90405f, 980.026001f, 1481.276f); |
-pathB.cubicTo(980.026001f, 1481.276f, 980.02594f, 1481.27576f, 980.025879f, 1481.27527f); |
-pathB.cubicTo(980.018494f, 1481.22131f, 979.602478f, 1478.38831f, 984.546021f, 1478.31494f); |
- testPathOp(reporter, path, pathB, kIntersect_PathOp, filename); |
- |
-} |
- |
-static void (*skipTest)(skiatest::Reporter* , const char* filename) = 0; |
+ testPathOpCheck(reporter, path, pathB, kIntersect_PathOp, filename, FLAGS_runFail); |
+} |
+ |
static void (*firstTest)(skiatest::Reporter* , const char* filename) = 0; |
-static void (*stopTest)(skiatest::Reporter* , const char* filename) = 0; |
static struct TestDesc tests[] = { |
- TEST(skpwww_educationalcraft_com_4a), |
TEST(skpwww_lptemp_com_3), |
TEST(skpwww_shinydemos_com_5), |
TEST(skpwww_lptemp_com_5), |
@@ -3893,10 +3939,11 @@ |
static const size_t testCount = SK_ARRAY_COUNT(tests); |
static bool runReverse = false; |
+static void (*stopTest)(skiatest::Reporter* , const char* filename) = 0; |
DEF_TEST(PathOpsSkp, reporter) { |
#if DEBUG_SHOW_TEST_NAME |
strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH); |
#endif |
- RunTestSet(reporter, tests, testCount, firstTest, skipTest, stopTest, runReverse); |
-} |
+ RunTestSet(reporter, tests, testCount, firstTest, stopTest, runReverse); |
+} |