roundedRectangleColor function
Implementation
bool roundedRectangleColor(
Pointer<SdlRenderer> renderer,
double x1,
double y1,
double x2,
double y2,
double rad,
SdlxColor color, {
int blendMode = SDL_BLENDMODE_BLEND,
}) => roundedRectangleRgba(
renderer,
x1,
y1,
x2,
y2,
rad,
color.r,
color.g,
color.b,
color.a,
blendMode: blendMode,
);