pouët.net

Go to bottom

OpenGL question

category: general [glöplog]
 
Is glEnableClientState the right way to process vertex buffers or is this an archaic method.
added on the 2006-08-19 19:03:24 by duffman duffman
As long as you use glBindBufferARB and glBufferDataARB (ARB_vertex_buffer_object) with it, it should be fine. If not, you aren't using vertex buffer objects, but just vertex arrays, which results in sending vertex data to GPU every frame (vertex buffer objects allow you to store it once and use every frame without any additional overhead).
added on the 2006-08-19 19:46:56 by KK KK
Thanks
added on the 2006-08-20 19:20:51 by duffman duffman

login

Go to top