ellipseColor function
Implementation
bool ellipseColor(
Pointer<SdlRenderer> renderer,
double x,
double y,
double rx,
double ry,
SdlxColor color, {
int blendMode = SDL_BLENDMODE_BLEND,
}) => _ellipseRgba(
renderer,
x,
y,
rx,
ry,
color.r,
color.g,
color.b,
color.a,
0,
blendMode: blendMode,
);