VKVG  
Vulkan Vector Graphics

◆ vkvg_quadratic_to()

void vkvg_quadratic_to ( VkvgContext  ctx,
float  x1,
float  y1,
float  x2,
float  y2 
)

If there is no current point before the call to vkvg_quadratic_to() this function will behave as if preceded by a call to vkvg_move_to(ctx, x1, y1).

Parameters
ctxThe vkvg context pointer.
x1The X coordinate of the control point.
y1The Y coordinate of the control point.
x2The X coordinate of the end point of the curve.
y2The Y coordinate of the end point of the curve.