Vertex Array Object: Difference between revisions

From OpenGL Wiki
Jump to navigation Jump to search
m Fixing link
No longer needed, as 100% of its info is elsewhere.
 
(23 intermediate revisions by 2 users not shown)
Line 1: Line 1:
You might also want to read glVertexAttribPointer which is at [[GlVertexAttribPointer]]
#REDIRECT [[Vertex Specification#Vertex Array Object]]
 
GL 3.0 introduces VAO (Vertex Array Object).
 
They have created GL_ARB_vertex_array_object so that GL 2.0 implementations can also have support for VAO (if the IHV driver programmers choose to offer it)
 
== Introduction ==
One of the problems of OpenGL is validation. Whenever you make a GL call, the driver has to validate all sorts of things to make sure the GL state is ok and that actually executing the command won't hang the system. VAOs help in this area.
 
Instead of making a lot of glVertexAttribPointer calls, you just call glBindVertexArray.
 
This is how you prepare a VAO.
 
<code>
  uint VAOID;
  glGenVertexArrays(1, &VAOID);
  glBindVertexArray(VAOID);
  //Now we must define the VAO format
  //Vertices, XYZ, FLOAT. We give GL_FALSE since we don't want normalization
  glBindBuffer(GL_ARRAY_BUFFER, VertexVBOID);  //A previously created VBO
  glVertexAttribPointer(vertexLoc, 3, GL_FLOAT, GL_FALSE, sizeof(MyVertex), XXX);
  //Normals, XYZ, FLOAT.
  glVertexAttribPointer(normalLoc, 3, GL_FLOAT, GL_FALSE, sizeof(MyVertex), XXX);
  //TexCoord0, XY (Also called ST. Also called UV), FLOAT.
  glVertexAttribPointer(texCoord0Loc, 2, GL_FLOAT, GL_FALSE, sizeof(MyVertex), XXX);
</code>
 
The XXX are offsets into the VBO.
 
Now the VAO is ready. To use it.
 
<code>
  glBindBuffer(GL_ARRAY_BUFFER, VertexVBOID);  //Necessary?
  glBindVertexArray(VAOID);
  glDrawRangeElements(...);  //or glDrawElements, or glDrawArrays
</code>
 


[[Category:Vertex Specification]]
[[Category:Vertex Specification]]
[[Category:Objects]]
[[Category:Objects]]

Latest revision as of 01:22, 8 September 2012