ImageDrawPixel method
Draw pixel within an image
Implementation
@override
void ImageDrawPixel(
StructPointer<ImageD> dst,
int posX,
int posY,
ColorD color,
) => _ffi.ImageDrawPixel(
dst.asNativePointer(),
posX,
posY,
$.Color$.Ref1(color).asNativePointer<ColorC>().ref,
);