Lines Matching refs:mappedPts
1397 SkPoint mappedPts[3]; in addPath() local
1399 mapPtsProc(matrix, mappedPts, &pts[0], 1); in addPath()
1406 lastPt != mappedPts[0]) { in addPath()
1407 this->lineTo(mappedPts[0]); in addPath()
1410 this->moveTo(mappedPts[0]); in addPath()
1414 mapPtsProc(matrix, mappedPts, &pts[1], 1); in addPath()
1415 this->lineTo(mappedPts[0]); in addPath()
1418 mapPtsProc(matrix, mappedPts, &pts[1], 2); in addPath()
1419 this->quadTo(mappedPts[0], mappedPts[1]); in addPath()
1422 mapPtsProc(matrix, mappedPts, &pts[1], 2); in addPath()
1423 this->conicTo(mappedPts[0], mappedPts[1], *w); in addPath()
1426 mapPtsProc(matrix, mappedPts, &pts[1], 3); in addPath()
1427 this->cubicTo(mappedPts[0], mappedPts[1], mappedPts[2]); in addPath()