imageDrawPixelV function

void imageDrawPixelV(
  1. Image dst,
  2. Vector2 position,
  3. Color color
)

Draw pixel within an image (Vector version).

Implementation

void imageDrawPixelV(Image dst, Vector2 position, Color color) {
  return library.ImageDrawPixelV(dst.pointer, position.ref, color.ref);
}