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

  /external/skia/include/c/
sk_path.h 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)
    [all...]
sk_canvas.h 30 void sk_canvas_clip_path(sk_canvas_t*, const sk_path_t*);
35 void sk_canvas_draw_path(sk_canvas_t*, const sk_path_t*, const sk_paint_t*);
sk_types.h 86 typedef struct sk_path_t sk_path_t; typedef in typeref:struct:sk_path_t
  /external/skia/src/c/
sk_surface.cpp 145 static const SkPath& AsPath(const sk_path_t& cpath) {
149 static SkPath* as_path(sk_path_t* cpath) {
240 sk_path_t* sk_path_new() {
241 return (sk_path_t*)SkNEW(SkPath);
244 void sk_path_delete(sk_path_t* cpath) {
248 void sk_path_move_to(sk_path_t* cpath, float x, float y) {
252 void sk_path_line_to(sk_path_t* cpath, float x, float y) {
256 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) {
260 void sk_path_conic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float w) {
264 void sk_path_cubic_to(sk_path_t* cpath, float x0, float y0, float x1, float y1, float x2, float y2)
    [all...]

Completed in 62 milliseconds