imageDrawPixel function

void imageDrawPixel(
  1. Image dst,
  2. int posX,
  3. int posY,
  4. Color color,
)

Draw pixel within an image.

Implementation

void imageDrawPixel(Image dst, int posX, int posY, Color color) {
  return library.ImageDrawPixel(dst.pointer, posX, posY, color.ref);
}