NAME
====
  vg_draw_pixel() - draw a pixel


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


DESCRIPTION
===========
  Draws a pixel.

  bmp is the bitmap, into which is drawed, or NULL for the window.
  x and y are the destination coordinates for the pixel.
  col is the color-index for the pixel.


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


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