DrawPixel method

void DrawPixel(
  1. int posX,
  2. int posY,
  3. ColorC color
)

Implementation

void DrawPixel(int posX, int posY, ColorC color) {
  return _DrawPixel(posX, posY, color);
}