Home | History | Annotate | Download | only in skia

Lines Matching full:pathelement

186     PathElement pathElement;
192 pathElement.type = PathElementMoveToPoint;
193 pathElement.points = convertPathPoints(pathPoints, &pts[0], 1);
196 pathElement.type = PathElementAddLineToPoint;
197 pathElement.points = convertPathPoints(pathPoints, &pts[1], 1);
200 pathElement.type = PathElementAddQuadCurveToPoint;
201 pathElement.points = convertPathPoints(pathPoints, &pts[1], 2);
204 pathElement.type = PathElementAddCurveToPoint;
205 pathElement.points = convertPathPoints(pathPoints, &pts[1], 3);
208 pathElement.type = PathElementCloseSubpath;
209 pathElement.points = convertPathPoints(pathPoints, 0, 0);
214 function(info, &pathElement);