Reputation: 413
Imagine I want to draw a pyramid made of triangles.
-Should I create a VBO for each triangle or one containing all triangles?
Upvotes: 1
Views: 156
Reputation: 283803
Selecting a VBO into a context is a rather expensive state change, so using fewer VBOs is definitely advantageous.
Upvotes: 3