roundedBoxInRgba method
Implementation
bool roundedBoxInRgba(
math.Rectangle<double> rect,
double rad,
int r,
int g,
int b,
int a, {
int blendMode = SDL_BLENDMODE_BLEND,
}) => gfx.roundedBoxRgba(
this,
rect.left,
rect.top,
rect.right - 1,
rect.bottom - 1,
rad,
r,
g,
b,
a,
blendMode: blendMode,
);