Re: [PyOpenGL-Users] NullFunctionError when calling glGenVertexArrays
Brought to you by:
mcfletch
From: Ian M. <geo...@gm...> - 2011-01-31 16:54:18
|
Hi, I always recommend using the OpenGL.arrays package: from OpenGL.arrays import vbo #... myVbo = vbo.VBO(numpy.array(n_by_3_list,"f"),usage='GL_STATIC_DRAW') #... glVertexPointerf(myVbo) Ian |