filledEllipseRgba function

int filledEllipseRgba(
  1. Pointer<SdlRenderer> renderer,
  2. int x,
  3. int y,
  4. int rx,
  5. int ry,
  6. int r,
  7. int g,
  8. int b,
  9. int a,
)

Implementation

int filledEllipseRgba(Pointer<SdlRenderer> renderer, int x, int y, int rx,
    int ry, int r, int g, int b, int a) {
  return _ellipseRgba(renderer, x, y, rx, ry, r, g, b, a, 1);
}