/*
* call-seq:
* draw_arc_s(center, radius, angles, color)
*
* Like #draw_arc, but the shape is solid, instead an outline.
* (This method does not require SDL_gfx 2.0.11 or greater,
* but #draw_arc does.)
*/
VALUE rbgm_draw_fillpie(VALUE target, VALUE center, VALUE radius, VALUE angles, VALUE rgba)
{
draw_pie(target,center,radius,angles,rgba,1); /* fill */
return target;
}