The fsRenderStroke function strokes the specified shapes.

 

Syntax
void fsRenderStroke(
    FsContext ctx,
    FsPaint* paint,
    FsCompositeOperationState compositeOperation,
    FsScissor* scissor,
    float fringe,
    float strokeWidth,
    const FsPath* paths,
    int npaths
    )

 

Members
ParametersDescription
ctxA value of type FsContext provided as an argument of the gauge callback.
paintThe FsPaint struct to use.
compositeOperationThe FsCompositeOperation struct to use.
scissorThe FsScissor struct to use.
fringeThe size of the fringe used for anti-aliasing.
strokeWidthThe width of the lines produced by the stroke.
pathsThe paths to draw, an array of FsPath structs.
npathsThe number of paths in paths.

 

Return Values

This function does not return a value.

 

Remarks

N/A