filledPolygonRgba function

int filledPolygonRgba(
  1. Pointer<SdlRenderer> renderer,
  2. Pointer<Int16> vx,
  3. Pointer<Int16> vy,
  4. int n,
  5. int r,
  6. int g,
  7. int b,
  8. int a,
)

Implementation

int filledPolygonRgba(Pointer<SdlRenderer> renderer, Pointer<Int16> vx,
    Pointer<Int16> vy, int n, int r, int g, int b, int a) {
  return filledPolygonRgbaMt(renderer, vx, vy, n, r, g, b, a);
}