DrawLineStrip method
Draw lines sequence (using gl lines)
Implementation
@override
void DrawLineStrip(
StructPointer<Vector2D> points,
int pointCount,
ColorD color,
) => _ffi.DrawLineStrip(
points.asNativePointer(),
pointCount,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);