HomeSort by relevance Sort by last modified time
    Searched full:intersections2 (Results 1 - 2 of 2) sorted by null

  /external/skia/tests/
PathOpsQuadIntersectionTest.cpp 378 SkIntersections intersections2; local
379 intersections2.intersect(quad1, quad2);
380 REPORTER_ASSERT(reporter, intersections2.debugCoincidentUsed() >= 2);
381 REPORTER_ASSERT(reporter, intersections2.used() >= 2);
382 for (int pt = 0; pt < intersections2.debugCoincidentUsed(); pt += 2) {
383 double tt1 = intersections2[0][pt];
384 double tt2 = intersections2[1][pt];
PathOpsCubicIntersectionTest.cpp 493 SkIntersections intersections2; local
494 int newIntersects = intersections2.intersect(cubic1, cubic2);
503 for (int pt = 0; pt < intersections2.used(); ++pt) {
504 double tt1 = intersections2[0][pt];
506 double tt2 = intersections2[1][pt];

Completed in 77 milliseconds