user1185305
user1185305

Reputation: 895

get Vertices from Vertex Buffer Handle

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

Answers (1)

Astrophys
Astrophys

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

Related Questions