Lines Matching refs:path
7 auto debugster = [](const SkPath& path, bool exact) -> void {
9 path.getPoint(0).fX, path.getPoint(0).fY, path.getPoint(1).fX,
10 path.getPoint(1).fY, path.getPoint(2).fX, path.getPoint(2).fY,
11 SkPath::IsQuadDegenerate(path.getPoint(0), path.getPoint(1), path.getPoint(2), exact) ?
14 SkPath path, offset;
15 path.moveTo({100, 100});
16 path.quadTo({100.00001f, 100.00001f}, {100.00002f, 100.00002f});
17 offset.addPath(path, 1000, 1000);
19 debugster(path, exact);