NAME
====
  vg_draw_fillout() - fill an area with a color


SYNOPSIS
========
  void vg_draw_fillout(bitmap * bmp, int x, int y, int col)


DESCRIPTION
===========
  Fills out an area with the color of col beginning from the starting
  pixel at (x,y) stopping at pixels with another color than at (x,y).
  However this works only, if the starting pixel is inside the bitmap/window.

  bmp is the bitmap, into which is drawed, or NULL for the window.
  x and y are the starting coordinates.
  col is the color-index for the area to be filled out.


RETURN VALUE
============
  No value is returned.


SEE ALSO
========
  Index
  Understanding drawing
  vg_draw_text()
  vg_draw_pixel()
  vg_draw_line()
  vg_draw_box()
  vg_draw_circle()