Home
last modified time | relevance | path

Searched refs:sk_path_t (Results 1 – 4 of 4) sorted by relevance

/external/skia/include/c/
Dsk_path.h23 sk_path_t* sk_path_new();
24 void sk_path_delete(sk_path_t*);
26 void sk_path_move_to(sk_path_t*, float x, float y);
27 void sk_path_line_to(sk_path_t*, float x, float y);
28 void sk_path_quad_to(sk_path_t*, float x0, float y0, float x1, float y1);
29 void sk_path_conic_to(sk_path_t*, float x0, float y0, float x1, float y1, float w);
30 void sk_path_cubic_to(sk_path_t*, float x0, float y0, float x1, float y1, float x2, float y2);
31 void sk_path_close(sk_path_t*);
33 void sk_path_add_rect(sk_path_t*, const sk_rect_t*, sk_path_direction_t);
34 void sk_path_add_oval(sk_path_t*, const sk_rect_t*, sk_path_direction_t);
[all …]
Dsk_canvas.h30 void sk_canvas_clip_path(sk_canvas_t*, const sk_path_t*);
35 void sk_canvas_draw_path(sk_canvas_t*, const sk_path_t*, const sk_paint_t*);
Dsk_types.h86 typedef struct sk_path_t sk_path_t; typedef
/external/skia/src/c/
Dsk_surface.cpp145 static const SkPath& AsPath(const sk_path_t& cpath) { in AsPath()
149 static SkPath* as_path(sk_path_t* cpath) { in as_path()
240 sk_path_t* sk_path_new() { in sk_path_new()
241 return (sk_path_t*)SkNEW(SkPath); in sk_path_new()
244 void sk_path_delete(sk_path_t* cpath) { in sk_path_delete()
248 void sk_path_move_to(sk_path_t* cpath, float x, float y) { in sk_path_move_to()
252 void sk_path_line_to(sk_path_t* cpath, float x, float y) { in sk_path_line_to()
256 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) { in sk_path_quad_to()
260 void sk_path_conic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float w) { in sk_path_conic_to()
264 void sk_path_cubic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float x2, float y2)… in sk_path_cubic_to()
[all …]