Understanding Vertex Array Objects (glGenVertexArrays )

19,150

Solution 1

Performance improvements.

In many cases, setting up your attributes on the host require a high number of API calls, and an important amount of validation inside the implementation.

Doing all those once, and using the VAO allow that work to be amortized.

See, for example, Graham Sellers' analysis for actual data.

Solution 2

Say you are building an object that needs three VBOs (different data for shading, maybe positions, normals and some fancy effect parameter). Each time you would draw this object, you would have to bind all these VBOs and set any additional parameters. If you use a VAO, you only have to use one call (binding the vertex array), this will set up the entire environment for the specific object.

Solution 3

The answer is not as hard as you imagined. Just think of it as a funny metaphor; VertexArrayObject is the boss and it manages several staff members which are VetexBufferObjects.

Share:
19,150
bluth
Author by

bluth

Updated on June 12, 2022

Comments

  • bluth
    bluth almost 2 years

    I am confused with the point in generating/creating a Vertex Array Object (VAO) with:

    glGenVertexArrays(GLsizei n, GLuint *arrays);
    

    and

    glBindVertexArray(GLuint);
    

    Because I can still create a buffer object, say for vertices, and describe that buffer object with glVertexAttribPointer and glEnableVertexAttribArraywithout ever creating a VAO.

    My question is if you do not have to actually create the VAO to describe the data in a buffer object, why would such sources as the OpenGL SuperBible 5ed include a call to create a VAO when creating VBOs? Are they only used for more advanced topics I have yet to discover, am I totally confused?

    Also I first encountered this question when reading wikipedias entry on VBOs and their sample code includes no calls to glGenVertexArrays() but they still describe the data with glVertexAttribPointer().Wiki VBO entry -- Example where VAOs are created for what reason?