Lines Matching refs:lastPt
204 SkPoint lastPt = { 0, 0 }; // init to avoid warning in add_path_segment() local
240 result.lineTo((lastPt.fX + firstPt.fX) / 2, (lastPt.fY + firstPt.fY) / 2); in add_path_segment()
253 result.lineTo(lastPt = pts[1]); in add_path_segment()
256 result.quadTo(pts[1], lastPt = pts[2]); in add_path_segment()
259 result.conicTo(pts[1], lastPt = pts[2], weight); in add_path_segment()
262 result.cubicTo(pts[1], pts[2], lastPt = pts[3]); in add_path_segment()
1410 SkPoint pts[4], firstPt, lastPt; in path_stroke()
1426 lastPt = pts[1]; in path_stroke()
1434 lastPt = pts[2]; in path_stroke()
1442 lastPt = pts[2]; in path_stroke()
1450 lastPt = pts[3]; in path_stroke()
1454 stroker.moveTo(lastPt); in path_stroke()