ImageDrawRectangle method

void ImageDrawRectangle(
  1. Pointer<ImageC> dst,
  2. int posX,
  3. int posY,
  4. int width,
  5. int height,
  6. ColorC color,
)

Implementation

void ImageDrawRectangle(
  Pointer<ImageC> dst,
  int posX,
  int posY,
  int width,
  int height,
  ColorC color,
) {
  return _ImageDrawRectangle(dst, posX, posY, width, height, color);
}