Lines Matching refs:stroker
1415 SkPathStroker stroker(src, radius, fMiterLimit, this->getCap(), this->getJoin(), in strokePath() local
1424 stroker.moveTo(pts[0]); in strokePath()
1427 stroker.lineTo(pts[1], &iter); in strokePath()
1431 stroker.quadTo(pts[1], pts[2]); in strokePath()
1435 stroker.conicTo(pts[1], pts[2], iter.conicWeight()); in strokePath()
1440 stroker.cubicTo(pts[1], pts[2], pts[3]); in strokePath()
1448 if (stroker.hasOnlyMoveTo()) { in strokePath()
1449 stroker.lineTo(stroker.moveToPt()); in strokePath()
1455 if (stroker.isCurrentContourEmpty()) { in strokePath()
1461 stroker.close(lastSegment == SkPath::kLine_Verb); in strokePath()
1468 stroker.done(dst, lastSegment == SkPath::kLine_Verb); in strokePath()