Lines Matching refs:pts
46 SkPoint pts[4]; in onFilterPath() local
60 switch (verb = iter.next(pts, false)) { in onFilterPath()
68 moveTo = pts[0]; in onFilterPath()
71 dst->moveTo(pts[0]); in onFilterPath()
76 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step); in onFilterPath()
82 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX, in onFilterPath()
83 pts[0].fY + step.fY); in onFilterPath()
86 dst->lineTo(pts[1].fX - step.fX, pts[1].fY - step.fY); in onFilterPath()
88 lastCorner = pts[1]; in onFilterPath()
95 dst->moveTo(pts[0]); in onFilterPath()
98 dst->quadTo(pts[1], pts[2]); in onFilterPath()
99 lastCorner = pts[2]; in onFilterPath()
105 dst->moveTo(pts[0]); in onFilterPath()
108 dst->conicTo(pts[1], pts[2], iter.conicWeight()); in onFilterPath()
109 lastCorner = pts[2]; in onFilterPath()
114 dst->moveTo(pts[0]); in onFilterPath()
118 dst->cubicTo(pts[1], pts[2], pts[3]); in onFilterPath()
119 lastCorner = pts[3]; in onFilterPath()