Home
last modified time | relevance | path

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

/third_party/skia/include/c/
Dsk_path.h23 typedef struct sk_pathbuilder_t sk_pathbuilder_t; typedef
26 SK_API sk_pathbuilder_t* sk_pathbuilder_new(void);
29 SK_API void sk_pathbuilder_delete(sk_pathbuilder_t*);
32 SK_API void sk_pathbuilder_move_to(sk_pathbuilder_t*, float x, float y);
38 SK_API void sk_pathbuilder_line_to(sk_pathbuilder_t*, float x, float y);
45 SK_API void sk_pathbuilder_quad_to(sk_pathbuilder_t*, float x0, float y0, float x1, float y1);
52 SK_API void sk_pathbuilder_conic_to(sk_pathbuilder_t*, float x0, float y0, float x1, float y1, floa…
59 SK_API void sk_pathbuilder_cubic_to(sk_pathbuilder_t*,
67 SK_API void sk_pathbuilder_close(sk_pathbuilder_t*);
72 SK_API void sk_pathbuilder_add_rect(sk_pathbuilder_t*, const sk_rect_t*, sk_path_direction_t);
[all …]
/third_party/skia/src/c/
Dsk_surface.cpp97 static SkPathBuilder* as_pathbuilder(sk_pathbuilder_t* cbuilder) { in as_pathbuilder()
179 sk_pathbuilder_t* sk_pathbuilder_new() { return (sk_pathbuilder_t*)new SkPathBuilder; } in sk_pathbuilder_new()
181 void sk_pathbuilder_delete(sk_pathbuilder_t* cbuilder) { delete as_pathbuilder(cbuilder); } in sk_pathbuilder_delete()
183 void sk_pathbuilder_move_to(sk_pathbuilder_t* cbuilder, float x, float y) { in sk_pathbuilder_move_to()
187 void sk_pathbuilder_line_to(sk_pathbuilder_t* cbuilder, float x, float y) { in sk_pathbuilder_line_to()
191 void sk_pathbuilder_quad_to(sk_pathbuilder_t* cbuilder, in sk_pathbuilder_quad_to()
196 void sk_pathbuilder_conic_to(sk_pathbuilder_t* cbuilder, in sk_pathbuilder_conic_to()
201 void sk_pathbuilder_cubic_to(sk_pathbuilder_t* cbuilder, in sk_pathbuilder_cubic_to()
206 void sk_pathbuilder_close(sk_pathbuilder_t* cbuilder) { in sk_pathbuilder_close()
210 void sk_pathbuilder_add_rect(sk_pathbuilder_t* cbuilder, const sk_rect_t* crect, sk_path_direction_… in sk_pathbuilder_add_rect()
[all …]
/third_party/skia/experimental/c-api-example/
Dskia-c-example.c54 sk_pathbuilder_t* path_builder = sk_pathbuilder_new(); in draw()
Dc.md75 sk_pathbuilder_t* path_builder = sk_pathbuilder_new();