Lines Matching defs:path
7 auto debugster = [](const char* prefix, const SkPath& path, SkPoint* points, int max) -> void {
8 int count = path.getPoints(points, max);
15 SkPath path;
16 path.lineTo(20, 20);
17 path.lineTo(-10, -10);
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());