Lines Matching defs:stroker
37 struct stroker {
38 void (*begin)(struct stroker *stroker);
39 void (*process_subpath)(struct stroker *stroker);
40 void (*end)(struct stroker *stroker);
58 struct stroker base;
60 struct stroker stroker;
68 void stroker_init(struct stroker *stroker,
70 void dash_stroker_init(struct stroker *stroker,
72 void dash_stroker_cleanup(struct dash_stroker *stroker);
73 void stroker_cleanup(struct stroker *stroker);
75 void stroker_begin(struct stroker *stroker);
76 void stroker_move_to(struct stroker *stroker, VGfloat x, VGfloat y);
77 void stroker_line_to(struct stroker *stroker, VGfloat x, VGfloat y);
78 void stroker_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1,
81 void stroker_end(struct stroker *stroker);
83 void stroker_emit_move_to(struct stroker *stroker, VGfloat x, VGfloat y);
84 void stroker_emit_line_to(struct stroker *stroker, VGfloat x, VGfloat y);
85 void stroker_emit_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1,