[PyOpenGL-Users] Missing VBO function
Brought to you by:
mcfletch
From: Roland E. <r.e...@gm...> - 2010-07-15 13:46:24
|
Hi, I am currently trying to use VBOs, but it seems that pyOpenGL 3.0.1 is lacking the functions glGenVertexArrays(), glBindVertexArray() and I suppose glDeleteVertexArray(). Below is the error I get: NameError: global name 'glGenVertexArrays' is not defined According to the OpenGL Programming Guide (the red book) seventh edition and some document I found on the official site of OpenGL, those functions exists since OpenGL 3.0. The basic question is, does pyOpenGL 3.0.1 belongs to OpenGL 3.0 or not? If yes, could it be related to the implementation for my platform or my graphics hardware? If not, to which version of OpenGL does pyOpenGL 3.0.1 belongs? Regards, Roland. |