Lines Matching refs:pts
54 SkPoint pts[4]; in filterPath() local
67 switch (verb = iter.next(pts)) { in filterPath()
75 moveTo = pts[0]; in filterPath()
78 dst->moveTo(pts[0]); in filterPath()
83 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step); in filterPath()
89 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX, in filterPath()
90 pts[0].fY + step.fY); in filterPath()
93 dst->lineTo(pts[1].fX - step.fX, pts[1].fY - step.fY); in filterPath()
95 lastCorner = pts[1]; in filterPath()
102 dst->moveTo(pts[0]); in filterPath()
105 dst->quadTo(pts[1], pts[2]); in filterPath()
106 lastCorner = pts[2]; in filterPath()
111 dst->moveTo(pts[0]); in filterPath()
115 dst->cubicTo(pts[1], pts[2], pts[3]); in filterPath()
116 lastCorner = pts[3]; in filterPath()