video.gldrawmode

OpenGL draw mode.

enum GLDrawMode;

OpenGL draw mode.

VertexArray

Vertex arrays. Client memory (RAM) arrays drawn in a single function call.

Deprecated in OpenGL 3.x, but well supported and fast for geometry generated at run time.

VertexBuffer

Vertex buffer. Server memory (VRAM or RAM) arrays drawn in a single function call.

Only drawing method supported in OpenGL 3.x (core) and onwards. Fast for static geometry, good enough for streaming as well.