vg4->window->draw_points()
Draw pixels onto window.
SYNTAX
void
vg4->window->draw_points(const struct VG_Point *points, size_t count, int color)
FUNCTION PARAMETERS
points | Array of pixel-positions |
count | Number of pixel-positions |
color | Pixel color: one of VG_COLORS or from VG_COLOR_RGB() |
DESCRIPTION
Draw pixels onto window.
The modified window contents will not be seen unless calling vg4->window->flush().
SEE ALSO