DrawTriangleStrip method
Draw a triangle strip defined by points
Implementation
@override
void DrawTriangleStrip(
StructPointer<Vector2D> points,
int pointCount,
ColorD color,
) => _ffi.DrawTriangleStrip(
points.asNativePointer(),
pointCount,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref
);