Lines Matching refs:points
7 auto debugster = [](const char* prefix, const SkPath& path, SkPoint* points, int max) -> void {
8 int count = path.getPoints(points, max);
10 for (int i = 0; i < std::min(count, max) && points; ++i) {
11 SkDebugf("(%1.8g,%1.8g) ", points[i].fX, points[i].fY);
18 SkPoint points[3];
19 debugster("no points", path, nullptr, 0);
20 debugster("zero max", path, points, 0);
21 debugster("too small", path, points, 2);
22 debugster("just right", path, points, path.countPoints());