filledPolygonRgba function

bool 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, {
  9. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool filledPolygonRgba(
  Pointer<SdlRenderer> renderer,
  Pointer<Int16> vx,
  Pointer<Int16> vy,
  int n,
  int r,
  int g,
  int b,
  int a, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) =>
    filledPolygonRgbaMt(renderer, vx, vy, n, r, g, b, a, blendMode: blendMode);