ImageDrawPixel method

void ImageDrawPixel(
  1. Pointer<ImageC> dst,
  2. int posX,
  3. int posY,
  4. ColorC color,
)

Implementation

void ImageDrawPixel(Pointer<ImageC> dst, int posX, int posY, ColorC color) {
  return _ImageDrawPixel(dst, posX, posY, color);
}