Lines Matching refs:lastPt
206 SkPoint lastPt = { 0, 0 }; // init to avoid warning in add_path_segment() local
242 result.lineTo((lastPt.fX + firstPt.fX) / 2, (lastPt.fY + firstPt.fY) / 2); in add_path_segment()
255 result.lineTo(lastPt = pts[1]); in add_path_segment()
258 result.quadTo(pts[1], lastPt = pts[2]); in add_path_segment()
261 result.conicTo(pts[1], lastPt = pts[2], weight); in add_path_segment()
264 result.cubicTo(pts[1], pts[2], lastPt = pts[3]); in add_path_segment()
1415 SkPoint pts[4], firstPt, lastPt; in path_stroke()
1431 lastPt = pts[1]; in path_stroke()
1439 lastPt = pts[2]; in path_stroke()
1447 lastPt = pts[2]; in path_stroke()
1455 lastPt = pts[3]; in path_stroke()
1459 stroker.moveTo(lastPt); in path_stroke()