HomeSort by relevance Sort by last modified time
    Searched refs:sk_path_t (Results 1 - 5 of 5) sorted by null

  /external/skia/include/c/
sk_path.h 24 SK_API sk_path_t* sk_path_new(void);
25 /** Release the memory used by a sk_path_t. */
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)
    [all...]
sk_canvas.h 92 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*);
sk_types.h 205 A sk_path_t encapsulates compound (multiple contour) geometric
209 typedef struct sk_path_t sk_path_t; typedef in typeref:struct:sk_path_t
  /external/skia/src/c/
sk_surface.cpp 165 static const SkPath& AsPath(const sk_path_t& cpath) {
169 static SkPath* as_path(sk_path_t* cpath) {
261 sk_path_t* sk_path_new() { return (sk_path_t*)new SkPath; }
263 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); }
265 void sk_path_move_to(sk_path_t* cpath, float x, float y) {
269 void sk_path_line_to(sk_path_t* cpath, float x, float y) {
273 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) {
277 void sk_path_conic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float w) {
281 void sk_path_cubic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float x2, float y2)
    [all...]
  /external/skia/experimental/c-api-example/
skia-c-example.c 53 sk_path_t* path = sk_path_new();

Completed in 59 milliseconds