Reputation: 895
Is it possible to somehow retrive the vertices of an object from the Vertex Buffer Handle ? I'm using OpenGL.
If it is possible how is this done.
Upvotes: 0
Views: 227
Reputation: 31
In a desktop OpenGL application you can use glMapBuffer to retrieve a pointer to the vertices stored in a vbo. However, this method is not required according to the ES 2.0 spec, section 2.9.
Upvotes: 2