Home
last modified time | relevance | path

Searched refs:sk_pathbuilder_t (Results 1 - 3 of 3) sorted by relevance

/third_party/skia/include/c/
H A Dsk_path.h23 typedef struct sk_pathbuilder_t sk_pathbuilder_t; typedef
26 SK_API sk_pathbuilder_t* sk_pathbuilder_new(void);
28 /** Release the memory used by a sk_pathbuilder_t. */
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, float w);
59 SK_API void sk_pathbuilder_cubic_to(sk_pathbuilder_t*,
[all...]
/third_party/skia/src/c/
H A 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* cbuilde
[all...]
/third_party/skia/experimental/c-api-example/
H A Dskia-c-example.c54 sk_pathbuilder_t* path_builder = sk_pathbuilder_new(); in draw()

Completed in 2 milliseconds