Lines Matching refs:stroker
1411 SkPathStroker stroker(src, radius, fMiterLimit, this->getCap(), this->getJoin(), in strokePath() local
1420 stroker.moveTo(pts[0]); in strokePath()
1423 stroker.lineTo(pts[1], &iter); in strokePath()
1427 stroker.quadTo(pts[1], pts[2]); in strokePath()
1431 stroker.conicTo(pts[1], pts[2], iter.conicWeight()); in strokePath()
1436 stroker.cubicTo(pts[1], pts[2], pts[3]); in strokePath()
1444 if (stroker.hasOnlyMoveTo()) { in strokePath()
1445 stroker.lineTo(stroker.moveToPt()); in strokePath()
1451 if (stroker.isCurrentContourEmpty()) { in strokePath()
1457 stroker.close(lastSegment == SkPath::kLine_Verb); in strokePath()
1464 stroker.done(dst, lastSegment == SkPath::kLine_Verb); in strokePath()