/* 
 *  call-seq:
 *    filled_polygon(surface, points, color)
 *
 *  As #polygon, but the shape is solid, not an outline.
 */
VALUE rbgm_draw_fillpolygon(VALUE module, VALUE target, VALUE points, VALUE rgba)
{
  draw_polygon(target,points,rgba,0,1); /* no aa, fill */
  return target;
}