Lines Matching refs:Shape

276     return (Tvg_Paint*) Shape::gen().release();  in tvg_shape_new()
283 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->reset(); in tvg_shape_reset()
290 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->moveTo(x, y); in tvg_shape_move_to()
297 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->lineTo(x, y); in tvg_shape_line_to()
304 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->cubicTo(cx1, cy1, cx2, cy2, x, y); in tvg_shape_cubic_to()
311 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->close(); in tvg_shape_close()
318 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->appendRect(x, y, w, h, rx, ry); in tvg_shape_append_rect()
325 …return (Tvg_Result) reinterpret_cast<Shape*>(paint)->appendArc(cx, cy, radius, startAngle, sweep, … in tvg_shape_append_arc()
332 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->appendCircle(cx, cy, rx, ry); in tvg_shape_append_circle()
339 …return (Tvg_Result) reinterpret_cast<Shape*>(paint)->appendPath((const PathCommand*)cmds, cmdCnt, … in tvg_shape_append_path()
346 *cnt = reinterpret_cast<const Shape*>(paint)->pathCoords((const Point**)pts); in tvg_shape_get_path_coords()
354 *cnt = reinterpret_cast<const Shape*>(paint)->pathCommands((const PathCommand**)cmds); in tvg_shape_get_path_commands()
362 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->stroke(width); in tvg_shape_set_stroke_width()
369 *width = reinterpret_cast<const Shape*>(paint)->strokeWidth(); in tvg_shape_get_stroke_width()
377 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->stroke(r, g, b, a); in tvg_shape_set_stroke_color()
384 return (Tvg_Result) reinterpret_cast<const Shape*>(paint)->strokeColor(r, g, b, a); in tvg_shape_get_stroke_color()
391 …return (Tvg_Result) reinterpret_cast<Shape*>(paint)->stroke(unique_ptr<LinearGradient>((LinearGrad… in tvg_shape_set_stroke_linear_gradient()
398 …return (Tvg_Result) reinterpret_cast<Shape*>(paint)->stroke(unique_ptr<RadialGradient>((RadialGrad… in tvg_shape_set_stroke_radial_gradient()
405 *gradient = (Tvg_Gradient*)(reinterpret_cast<const Shape*>(paint)->strokeFill()); in tvg_shape_get_stroke_gradient()
413 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->stroke(dashPattern, cnt); in tvg_shape_set_stroke_dash()
420 *cnt = reinterpret_cast<const Shape*>(paint)->strokeDash(dashPattern); in tvg_shape_get_stroke_dash()
428 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->stroke((StrokeCap)cap); in tvg_shape_set_stroke_cap()
435 *cap = (Tvg_Stroke_Cap) reinterpret_cast<const Shape*>(paint)->strokeCap(); in tvg_shape_get_stroke_cap()
443 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->stroke((StrokeJoin)join); in tvg_shape_set_stroke_join()
450 *join = (Tvg_Stroke_Join) reinterpret_cast<const Shape*>(paint)->strokeJoin(); in tvg_shape_get_stroke_join()
458 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->strokeMiterlimit(ml); in tvg_shape_set_stroke_miterlimit()
465 *ml = reinterpret_cast<const Shape*>(paint)->strokeMiterlimit(); in tvg_shape_get_stroke_miterlimit()
473 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->strokeTrim(begin, end, simultaneous); in tvg_shape_set_stroke_trim()
480 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->fill(r, g, b, a); in tvg_shape_set_fill_color()
487 return (Tvg_Result) reinterpret_cast<const Shape*>(paint)->fillColor(r, g, b, a); in tvg_shape_get_fill_color()
494 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->fill((FillRule)rule); in tvg_shape_set_fill_rule()
501 *rule = (Tvg_Fill_Rule) reinterpret_cast<const Shape*>(paint)->fillRule(); in tvg_shape_get_fill_rule()
509 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->order(strokeFirst); in tvg_shape_set_paint_order()
516 …return (Tvg_Result) reinterpret_cast<Shape*>(paint)->fill(unique_ptr<LinearGradient>((LinearGradie… in tvg_shape_set_linear_gradient()
523 …return (Tvg_Result) reinterpret_cast<Shape*>(paint)->fill(unique_ptr<RadialGradient>((RadialGradie… in tvg_shape_set_radial_gradient()
530 *gradient = (Tvg_Gradient*)(reinterpret_cast<const Shape*>(paint)->fill()); in tvg_shape_get_gradient()