Lines Matching refs:sk_path_t
23 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);
41 bool sk_path_get_bounds(const sk_path_t*, sk_rect_t*);