The fsRenderFill fills the specified shapes.

 

Syntax
void fsRenderFill(
    FsContext ctx,
    FsPaint* paint,
    FsCompositeOperationState compositeOperation,
    FsScissor* scissor,
    float fringe,
    const float* bounds,
    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.
boundsThe boundaries of the shape. This is an array of 4 floats: [ xmin, ymin, xmax, ymax].
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