I've been working through this excellent tutorial on modern OpenGL programming, and I'm slowly adapting it to work on PyOpenGL and pygame. However, I'm having the hardest time getting what should be a "trivial" example to work with perspective geometry. Code is as found here: http://pastebin.com/SJcCfW34

Based on my understanding, I should get a red square to cover the upper right quadrant of the screen, but nothing I'm doing seems to affect the fully gray screen. Any insight into what's wrong would be much appreciated!

link|improve this question
1  
Please add your code, otherwise we can't help – Secator Feb 22 at 13:04
There's a pastebin link right there with the full code. I even tried a direct pass-through version with no projection in the shader, and still it doesn't work. – jamesshuang Feb 22 at 18:26
feedback

1 Answer

After condensing the problem down even further and making a nearly line-by-line match in C, I realized that it was a problem in pyopengl exclusively, not in pygame. I posted on their mailing list with the example code, and found the answer:

http://sourceforge.net/mailarchive/message.php?msg_id=28875534

It seems that there's a slight "misfeature" in how they implemented the ctypes wrapper for glDrawElements. The final argument, which gives the offset, requires type (void*). The value passed in by a simple 0 doesn't work, and needs to be wrapped with GLvoidp(0).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.