aaPolygonRgba method
Implementation
bool aaPolygonRgba(
List<math.Point<double>> ps,
int r,
int g,
int b,
int a, {
int blendMode = SDL_BLENDMODE_BLEND,
}) {
final xsPointer = ps.callocInt16X();
final ysPointer = ps.callocInt16Y();
final result = gfx.aapolygonRgba(
this,
xsPointer,
ysPointer,
ps.length,
r,
g,
b,
a,
blendMode: blendMode,
);
calloc
..free(xsPointer)
..free(ysPointer);
return result;
}