Tagged Questions
12
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?
7
votes
3answers
672 views
Building an interleaved buffer for pyopengl and numpy
I'm trying to batch up a bunch of vertices and texture coords in an interleaved array before sending it to pyOpengl's glInterleavedArrays/glDrawArrays. The only problem is that I'm unable to find a ...
4
votes
1answer
346 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, ...
4
votes
2answers
966 views
OpenGL Shadow Mapping using GLSL
I am trying to get shadow mapping working using GLSL. Unfortunately my depth render results are unusable even I have a pretty decent depth buffer precision. It is rendering like wireframe, following ...
4
votes
4answers
217 views
What is the fastest way in python to build a c array from a list of tuples of floats?
The context: my Python code pass arrays of 2D vertices to OpenGL.
I tested 2 approaches, one with ctypes, the other with struct, the latter being more than twice faster.
from random import random
...
4
votes
5answers
857 views
pyopengl: Could it replace c++?
I'm starting a computer graphics course, and I have to choose a language.
Choices are between C++ and Python. I have no problem with C++, python is a work in progress. So i was thinking to go down ...
3
votes
2answers
152 views
fastest way to iterate in python
I've never had to concern myself with this problem so far but now I need to use some large number of vertices that need to be buffered by PyOpenGL and it seems like the python iteration is the ...
3
votes
1answer
6k views
How do I use gluLookAt properly?
I don't want to get into complex trigonometry to calculate rotations and things like that for my 3D world so gluLookAt seems like a nice alternative. According to the documentation all I need to do is ...
3
votes
2answers
458 views
Is PyOpenGL a good place to start learning opengl programming?
I want to start learning OpenGL but I don't really want to have to learn another language to do it. I already am pretty proficient in python and enjoy the language. I just want to know how close it is ...
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 ...
3
votes
3answers
696 views
New to OpenGL and deprecation
I've begun playing around with OpenGL in Python using PyOpenGL 3.0.1b.
I looked at some sample code and started running it and modifying it etc. All was well until I became a little less ignorant.
...
3
votes
2answers
4k views
Python - No handlers could be found for logger “OpenGL.error”
Okay, what is it, and why does it occur on Win2003 server, but not on WinXP.
It doesn't seem to affect my application at all, but I get this error message when I close the application. And it's ...
2
votes
2answers
121 views
Calling OpenGL Extensions from Python
I am using PyOpenGL 3 on Ubuntu Natty.
I want to use the glDrawElementsBaseVertex function.
I can see it listed in my glxinfo output, so I know my card has it.
However, I cannot find how to ...
2
votes
2answers
999 views
Transparent FrameBuffer background in OpenGL
I want to use glClear and glClearColor to fill a frame buffer with a colour including alpha transparency. However the framebuffer always renders as opaque when binded to a texture which is rendered to ...
2
votes
1answer
572 views
Just installed QtOpenGL but cannot import it (from Python)
I just installed it with apt-get on debian linux with
apt-get install libqt4-opengl
the rest of PyQt4 is available, but I cant get to this new module.
from PyQt4 import QtOpenGL
raises ...
2
votes
1answer
596 views
Using ctypes.c_void_p as an input to glTexImage2D?
I'm using a 3rd party DLL to load in some raw image data, and I want to use this raw image data as a texture in openGL. However, the c function returns a void*, and I need to somehow convert this so ...
1
vote
2answers
193 views
PIL Image.fromstring from PyOpengl buffer has the wrong size
I use PyOpenGL to draw a 2D Image. Then I want to use the Python Imaging Library (PIL) to store this image to disk. I use GLUT to display the image which works perfectly. But when I use PIL to store ...
1
vote
1answer
132 views
Installing PyOpenGL with MacPorts
I'm trying to install PyOpenGL with macports, and I'd like to use Python 2.7, which I have also installed with macports. However, only Python 2.4 seems to have access to PyOpenGL when I install it ...
1
vote
1answer
186 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 ...
1
vote
2answers
134 views
Trying to Graph a Simple Square in pyOpenGL
I'm trying to teach myself OpenGL using pyopengl and I'm struck on trying to render a simple 2D square centered at the origin. Whenever I set an array value greater than or equal to 1, the shape takes ...
1
vote
1answer
159 views
PyOpenGL FPS improvement
I'm trying to improve my FPS rate for an python OpenGL program. So far my approach is:
self.bufferVertices = glGenBuffers(1)
glBindBuffer(GL_ARRAY_BUFFER_ARB, self.bufferVertices)
...
1
vote
1answer
344 views
PyOpenGL: Rendering… Well… Anything really
I've been working on a project using python with OpenGL for a while now. I previously posted a similar problem, but I have since done some more research and switched to non-deprecated functions. ...
1
vote
1answer
236 views
Implementing render-to-vertex-array, glReadPixels fails (invalid operation)
I'm trying to copy vertex data from a texture to a vertex buffer, and then draw the vertex buffer. As far as I know the best way to do this is to bind the texture to a fbo, and use glReadPixels to ...
1
vote
3answers
991 views
PyOpenGL + Pygame capped to 60 FPS in Fullscreen
I'm currently working on a game engine written in pygame and I wanted to add OpenGL support.
I wrote a test to see how to make pygame and OpenGL work together, and when it's running in windowed mode, ...
0
votes
1answer
53 views
pyOpenGL VBOs with index
I want to draw a Rectangle in pyOpenGL using VBOs with indices. I am using the glDrawRangeElements() function for that but I always get the same mistake in the line glDrawRangeElements:
WindowsError: ...
0
votes
1answer
44 views
Efficiency of display lists in OpenGL with Python?
I have been teaching myself OpenGL programming using the Python wrapper PyOpenGL, and am now working on my first project with it. This project is a music visualizer (not dissimilar to whitecap) using ...
0
votes
1answer
79 views
pyopengl glut input
After the window containing GLUT graphics appears, I would like to enter input in the terminal:
user@computer: python woop.py
# Now displaying a beautiful landscape
(cmd): season winter
# Now ...
0
votes
2answers
141 views
Trouble using pyopengl in Python 2.6.6
What I'm trying to do is code a basic OpenGL 2.0 window, when I run the code from a file, it works for the first couple of runs, then it dumps errors. If I run the same exact code from the IDLE GUI, I ...
0
votes
3answers
511 views
Python PIL Image.tostring()
I'm new to Python and PIL. I am trying to follow code samples on how to load an image into to Python through PIL and then draw its pixels using openGL. Here are some line of the code:
from Image ...
0
votes
1answer
94 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):
...
0
votes
0answers
81 views
Using offsets into the buffer in PyOpenGL calls
In OpenGL the indices parameter for glDrawElements has two different meanings, depending on if you are using GL_ELEMENT_ARRAY_BUFFER or not.
If you have a VBO bound, then it is the offset to start in ...
0
votes
1answer
59 views
problem with pyopengl in linux
I am a beginner.
I want to use pyopengl in linux but I have a problem.
I try to import pyopengl module as below :
from OpenGl.GL import *
but interpreter shows this error message :
Traceback (most ...
0
votes
0answers
207 views
Python OpenGL strange situation
I've reached a weird point in my program and I don't even know what to look for anymore. So I have on module name MyGLModule. This contains a class that extends wx.GLCanvas a custom panel in which to ...
0
votes
1answer
140 views
using bbfreeze with a pyopengl application on linux
I have this pyopengl application and I'm trying to freeze it with bbfreeze. Unfortunately when I run the frozen app it errors with this:
Traceback (most recent call last):
File "<string>", ...
0
votes
0answers
143 views
Convert float list to c_void_p in python
The problem: i need to convert a list of floats to float-array and create a c_void_p pointer to that array.
I can convert that list to numpy.array and convert numpy.array to ...
0
votes
1answer
54 views
pyopengl display blocked when acting as a socket server at the same time
I am actually using a pyopengl program to act as a socket server. At the same time
the server receives commands from clients and interprets these commands and does corresponding drawing at the same ...
0
votes
3answers
503 views
Merging multiple line segments
My program uses PyOpenGL (so it's Python) with psyco.
I have around 21,000 line segments which I need to render in each frame of my render (unless the user zooms in, in which case line segments are ...
0
votes
1answer
260 views
How to uncheck a checkbox to stop infinite drawing in pyqt?
My problem is I want to keep rotating the scene if the checkbox is checked, and stop this rotation immediately once it is unchecked. However, "keep rotating" means an infinite loop...
So after ...
0
votes
1answer
378 views
How can I determine the monitor refresh rate?
Is there a cross platform way to get the monitor's refresh rate in python (2.6)? I'm using Pygame and PyOpenGL, if that helps.
I don't need to change the refresh rate, I just need to know what it is.
...
-3
votes
1answer
510 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 ...