Home
last modified time | relevance | path

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

/external/skia/include/c/
Dsk_path.h24 SK_API sk_path_t* sk_path_new();
26 SK_API void sk_path_delete(sk_path_t*);
29 SK_API void sk_path_move_to(sk_path_t*, float x, float y);
35 SK_API void sk_path_line_to(sk_path_t*, float x, float y);
42 SK_API void sk_path_quad_to(sk_path_t*, float x0, float y0, float x1, float y1);
49 SK_API void sk_path_conic_to(sk_path_t*, float x0, float y0, float x1, float y1, float w);
56 SK_API void sk_path_cubic_to(sk_path_t*,
64 SK_API void sk_path_close(sk_path_t*);
69 SK_API void sk_path_add_rect(sk_path_t*, const sk_rect_t*, sk_path_direction_t);
73 SK_API void sk_path_add_oval(sk_path_t*, const sk_rect_t*, sk_path_direction_t);
[all …]
Dsk_canvas.h92 SK_API void sk_canvas_clip_path(sk_canvas_t*, const sk_path_t*);
119 SK_API void sk_canvas_draw_path(sk_canvas_t*, const sk_path_t*, const sk_paint_t*);
Dsk_types.h144 typedef struct sk_path_t sk_path_t; typedef
/external/skia/src/c/
Dsk_surface.cpp165 static const SkPath& AsPath(const sk_path_t& cpath) { in AsPath()
169 static SkPath* as_path(sk_path_t* cpath) { in as_path()
261 sk_path_t* sk_path_new() { return (sk_path_t*)new SkPath; } in sk_path_new()
263 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); } in sk_path_delete()
265 void sk_path_move_to(sk_path_t* cpath, float x, float y) { in sk_path_move_to()
269 void sk_path_line_to(sk_path_t* cpath, float x, float y) { in sk_path_line_to()
273 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) { in sk_path_quad_to()
277 void sk_path_conic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float w) { in sk_path_conic_to()
281 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()
285 void sk_path_close(sk_path_t* cpath) { in sk_path_close()
[all …]
/external/skia/experimental/c-api-example/
Dskia-c-example.c53 sk_path_t* path = sk_path_new(); in draw()
Dc.md74 sk_path_t* path = sk_path_new();