Lines Matching refs:path
7 auto debugster = [](const char* prefix, const SkPath& path) -> void {
11 path.isRect(&rect, &isClosed, &direction) ?
17 SkPath path;
18 debugster("empty", path);
19 path.addRect({10, 20, 30, 40});
20 debugster("addRect", path);
21 path.moveTo(60, 70);
22 debugster("moveTo", path);
23 path.lineTo(60, 70);
24 debugster("lineTo", path);
25 path.reset();
27 path.addPoly(pts, SK_ARRAY_COUNT(pts), false);
28 debugster("addPoly", path);