Lines Matching refs:stroker
1451 SkPathStroker stroker(src, radius, fMiterLimit, this->getCap(), this->getJoin(), in strokePath() local
1460 stroker.moveTo(pts[0]); in strokePath()
1463 stroker.lineTo(pts[1], &iter); in strokePath()
1467 stroker.quadTo(pts[1], pts[2]); in strokePath()
1471 stroker.conicTo(pts[1], pts[2], iter.conicWeight()); in strokePath()
1476 stroker.cubicTo(pts[1], pts[2], pts[3]); in strokePath()
1484 if (stroker.hasOnlyMoveTo()) { in strokePath()
1485 stroker.lineTo(stroker.moveToPt()); in strokePath()
1491 if (stroker.isCurrentContourEmpty()) { in strokePath()
1497 stroker.close(lastSegment == SkPath::kLine_Verb); in strokePath()
1504 stroker.done(dst, lastSegment == SkPath::kLine_Verb); in strokePath()