Vertex Buffer Object

From Wikipedia, the free encyclopedia

Vertex Buffer Objects (VBOs) is an OpenGL extension that provides methods for uploading data ( vertex, normal vector, color, etc) to the video device for non-immediate-mode rendering. VBOs offer substantial performance gains over immediate mode rendering primarily due to the fact that the data resides in the video device memory rather than the system memory and so it can be rendered directly by the video device.

The Vertex Buffer Object specification has been standardized by the OpenGL Architecture Review Board as of OpenGL Version 1.4. Similar functionality was available before the standardization of VBOs via the Nvidia-created extension "Vertex Array Range"[1].

Contents

[edit] Basic VBO functions

The following functions form the core of VBO access and manipulation[2]

GenBuffersARB(sizei n, uint *buffers)
Generates a new VBO and returns it's ID number as an unsigned integer. Id 0 is reserved.

BindBufferARB(enum target, uint buffer)
Use a previously created buffer as the active VBO.

BufferDataARB(enum target, sizeiptrARB size, const void *data, enum usage)
Upload data to the active VBO.

DeleteBuffersARB(sizei n, const uint *buffers)
Deletes the specified number of VBOs from the supplied array or VBO id.

[edit] Example usage in c99

/* Create a variable to hold the VBO identifier */
unsigned int id;
 
/* Vertices of a triangle (counter-clockwise winding) */
float data[] = {1.0, 0.0, 1.0, 0.0, 0.0, -1.0, -1.0, 0.0, 1.0};
 
/* Create a new VBO and use the variable id to store the VBO id */
glGenBuffersARB(1, &id);
 
/* Make the new VBO active */
glBindBufferARB(GL_ARRAY_BUFFER_ARB, id);
 
/* Upload vertex data to the video device */
glBufferDataARB(GL_ARRAY_BUFFER_ARB, sizeof(data), data, GL_STATIC_DRAW_ARB);

[edit] References

[edit] Further Reading

Vertex Buffer Object Whitepaper