I heard that there was a faster method of displaying vertices, rather than recreating the GL_TRIANGLES, each time the scene is drawn. I thought I read somewhere that this method was obselete. Why would the OpenGL group remove something that was faster? Even if it is obselete, how would I go about implementing this?
Tell me more
×
Game Development Stack Exchange is a question and answer site for
professional and independent game developers. It's 100% free, no registration required.
|
The main issue is that OpenGL 3 deprecates immediate mode rendering, which means you can't use What you should be using are Vertex Buffer Objects (supported since version 1.5). As with display lists, VBOs allow you not to re-send the entire scene to the GPU every frame, resulting in a huge performance boost. |
|||
|