Home | History | Annotate | Download | only in core

Lines Matching defs:lastPt

616 bool SkPath::getLastPt(SkPoint* lastPt) const {
621 if (lastPt) {
622 *lastPt = fPathRef->atPoint(count - 1);
626 if (lastPt) {
627 lastPt->set(0, 0);
1067 SkPoint lastPt;
1068 SkAssertResult(path->getLastPt(&lastPt));
1069 if (lastPt.fX != xOff[0] || lastPt.fY != yOff[0]) {
1740 SkPoint lastPt = fLastPt;
1748 lastPt = fPts[0];
1764 if (!IsLineDegenerate(lastPt, fPts[0])) {
1779 if (!IsQuadDegenerate(lastPt, fPts[0], fPts[1])) {
1794 if (!IsCubicDegenerate(lastPt, fPts[0], fPts[1], fPts[2])) {
2169 static DirChange direction_change(const SkPoint& lastPt, const SkVector& curPt,
2173 SkScalar smallest = SkTMin(curPt.fX, SkTMin(curPt.fY, SkTMin(lastPt.fX, lastPt.fY)));
2174 SkScalar largest = SkTMax(curPt.fX, SkTMax(curPt.fY, SkTMax(lastPt.fX, lastPt.fY)));