Home | History | Annotate | Download | only in c

Lines Matching full:as_path

169 static SkPath* as_path(sk_path_t* cpath) {
263 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); }
266 as_path(cpath)->moveTo(x, y);
270 as_path(cpath)->lineTo(x, y);
274 as_path(cpath)->quadTo(x0, y0, x1, y1);
278 as_path(cpath)->conicTo(x0, y0, x1, y1, w);
282 as_path(cpath)->cubicTo(x0, y0, x1, y1, x2, y2);
286 as_path(cpath)->close();
294 as_path(cpath)->addRect(AsRect(*crect), dir);
302 as_path(cpath)->addOval(AsRect(*crect), dir);