Lines Matching refs:pts
20 SkPoint pts[4];
26 switch (verb = iter.next(pts, false)) {
31 dst->moveTo(pts[0]);
35 dst->arcTo(pts[0], pts[1], fRadius);
37 lastCorner = pts[1];
40 dst->quadTo(pts[1], pts[2]);
41 lastCorner = pts[2];
44 dst->conicTo(pts[1], pts[2], iter.conicWeight());
45 lastCorner = pts[2];
48 dst->cubicTo(pts[1], pts[2], pts[3]);
49 lastCorner = pts[3];