User:Eric B. and Rakim/vertex arrays

From WikiProjectMed
Jump to navigation Jump to search

In OpenGL terminology, a vertex array is a list of vertices that form a number of polygons that can be drawn at once. The relevant GL commands are:

GLsizei stride, const GLvoid * pointer)

Using these commands, the drawing efficiency can more than double compared to using slower glBegin/glEnd sequences.

Concept

Using vertex arrays

Examples

External links