Rendering points
Description
GL_POINTS
: Each vertex is a single point on the screen
Example: rendering 10 green points arranged on a
circle
glDrawArrays(GL_POINTS,
0, 10);

By
default, points are rendered to be one pixel in size. To
change this, call:
glPointSize(GLfloat
size);
Súvisiace pojmy: