# fsRenderTriangles The **fsRenderTriangles** function renders the specified triangles.   ##### Syntax ``` wasm void fsRenderTriangles( FsContext ctx, FsPaint* paint, FsCompositeOperationState compositeOperation, FsScissor* scissor, const FsVertex* verts, int nverts ) ```   ##### Members {{< table-wrapper >}} | Parameters | Description | |----------------------|----------------------------------------------------------------------------| | `ctx` | A value of type `FsContext` provided as an argument of the gauge callback. | | `paint` | The `FsPaint` struct to use. | | `compositeOperation` | The `FsCompositeOperation` struct to use. | | `scissor` | The `FsScissor` struct to use. | | `verts` | The vertices to draw, an array of `FsVertex` structs. | | `nverts` | The number of vertices in `verts`. | {{< /table-wrapper >}}   ##### Return Values This function does not return a value.   ##### Remarks N/A