ImageDrawPixel method
Implementation
void ImageDrawPixel(
ImageD dst,
num posX,
num posY,
ColorD color,
) => run(
() => 'ImageDrawPixel($dst, $posX, $posY, $color)',
() => _refUpdateImage(dst,
(p) => rl.Core.ImageDrawPixel(
p,
posX.toInt(),
posY.toInt(),
_refColor1(color).ref,
),
),
);