Home | History | Annotate | Download | only in core

Lines Matching refs:lastPt

687 bool SkPath::getLastPt(SkPoint* lastPt) const {
692 if (lastPt) {
693 *lastPt = fPathRef->atPoint(count - 1);
697 if (lastPt) {
698 lastPt->set(0, 0);
1317 SkPoint lastPt;
1325 } else if (kSkipLineToCheck || !this->getLastPt(&lastPt) ||
1326 !SkScalarNearlyEqual(lastPt.fX, pt.fX) ||
1327 !SkScalarNearlyEqual(lastPt.fY, pt.fY)) {
1940 SkPoint lastPt = fLastPt;
1949 lastPt = fPts[0];
1965 if (!IsLineDegenerate(lastPt, fPts[0], exact)) {
1981 if (!IsQuadDegenerate(lastPt, fPts[0], fPts[1], exact)) {
1997 if (!IsCubicDegenerate(lastPt, fPts[0], fPts[1], fPts[2], exact)) {