Tagged Questions
13
votes
7answers
3k views
PyOpenGl or pyglet?
I am looking to do some tinkering with openGL and Python and haven't been able to find good reasons for using PyOpenGl versus pyglet
Which would you recommend and why?
5
votes
1answer
473 views
Where is there a PyopenGL Tutorial?
I've looked everywhere for a tutorial, even at Stack Overflow! I know, there are other 3d libraries but they do all the work and pyglet doesn't work with my version of Python. It's Python 2.7. So, ...
3
votes
2answers
1k views
HDR, adaptive tone mapping and MSAA in GLSL
In an effort to teach myself OpenGL, I am working my way trough the 5th edition of the Superbible.
I am currently trying to figure out how to combine HDR and MSAA (as described in chapter 9).
For ...
3
votes
2answers
1k views
Pyglet OpenGL drawing anti-aliasing
I've been looking around for a way to anti-alias lines in OpenGL, but none of them seem to work... here's some example code:
import pyglet ...
2
votes
1answer
202 views
How to PyOpengl or pyglet to draw on top of desktop?
I'm writing an application that is looking to draw basic polygons and ellipses on the Windows 7 desktop using OpenGL. According to this previous question, this is possibly by getting the window handle ...
0
votes
1answer
103 views
A problem with using pyglet and pyopengl together
I have the following code:
import pyglet
from OpenGL.GL import *
from OpenGL.GLU import *
class Window(pyglet.window.Window):
def __init__(self,width,height):
...
-3
votes
1answer
525 views
Implementing pyglet breaks my once working framebuffer OpenGL code
This question repeats my earlier one but my earlier one was a failure because I didn't copy some vital information correctly, so I have to redo it.
I'm getting an error with a call to an OpenGL ...