Home | History | Annotate | Download | only in skia

Lines Matching refs:pts

185     SkPoint pts[4];
190 switch (iter.next(pts)) {
193 pathElement.points = convertPathPoints(pathPoints, &pts[0], 1);
197 pathElement.points = convertPathPoints(pathPoints, &pts[1], 1);
201 pathElement.points = convertPathPoints(pathPoints, &pts[1], 2);
205 pathElement.points = convertPathPoints(pathPoints, &pts[1], 3);
228 SkPoint pts[4];
234 verb = iter.next(pts);
237 result += String::format("M%.2f,%.2f ", pts[0].fX, pts[0].fY);
242 result += String::format("L%.2f,%.2f ", pts[1].fX, pts[1].fY);
248 pts[1].fX, pts[1].fY,
249 pts[2].fX, pts[2].fY);
254 pts[1].fX, pts[1].fY,
255 pts[2].fX, pts[2].fY,
256 pts[3].fX, pts[3].fY);
272 m_path->getLastPt(pts);
273 result += String::format("M%.2f,%.2f ", pts[0].fX, pts[0].fY);