Home | History | Annotate | Download | only in vega

Lines Matching refs:VGfloat

46    VGfloat back1_x, back1_y;
47 VGfloat back2_x, back2_y;
49 VGfloat stroke_width;
50 VGfloat miter_limit;
62 VGfloat dash_pattern[VEGA_MAX_DASH_COUNT];
64 VGfloat dash_phase;
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,
79 VGfloat px2, VGfloat py2,
80 VGfloat x, VGfloat y);
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,
86 VGfloat px2, VGfloat py2,
87 VGfloat x, VGfloat y);