The fsRenderTriangles function renders the specified triangles.

 

Syntax
void fsRenderTriangles(
    FsContext ctx,
    FsPaint* paint,
    FsCompositeOperationState compositeOperation,
    FsScissor* scissor,
    const FsVertex* verts,
    int nverts
    )

 

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.
vertsThe vertices to draw, an array of FsVertex structs.
nvertsThe number of vertices in verts.

 

Return Values

This function does not return a value.

 

Remarks

N/A