MORE NAMING CONVENTIONS
There are many variants of the Vertex command, e.g.,
glVertex2i
.
To refer to all these variants, simply write
glVertex*
.
Constants in OpenGL are written in all caps and begins with ``GL_...''.
-- E.g.,
GL_LINES, GL_RGB
.