pyopengl 3.0.1 and glGenBuffers

Started by
-1 comments, last by ObsidianBlk 13 years, 2 months ago
I have been googling and testing and writing and coding for over 5 hours trying to get proper VBOs working.
I'm using python 2.6 and pyopengl 3.0.1

When I try the following:
buf = GL.GLuint()
glGenBuffers(1, buf)

I get an exception stating that only 1 argument is expected but 2 were given.

When I simply try:
buf = glGenBuffers(1)
I get a NullFunctionError and a suggestion to test for bool(glGenBuffers).

My only two thoughts on this are
1) glGenBuffers is broken in pyopengl 3.0.1
2) My video drivers do not support this action.

I'm trying this on Ubuntu 10.04 with ATI 4650 using the proprietary ATI drivers for Linux.
Does anyone have any thoughts on this?

This topic is closed to new replies.

Advertisement