Tagged Questions

Python binding to OpenGL library

learn more… | top users | synonyms

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 ...
6
votes
3answers
1k views

Where can I find a good online OpenGL 3.0 tutorial that doesn't use any deprecated functionality?

I just purchased the fifth edition of the OpenGL SuperBible. I'm very pleased that they've avoided using deprecated functionality but their examples make use of GLTools. GLTools provides a slew of ...
4
votes
1answer
340 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
2k views

Why does my OpenGL Phong shader behave like a flat shader?

I've been learning OpenGL for the past couple of weeks and I've run into some trouble implementing a Phong shader. It appears to do no interpolation between vertexes despite my use of the smooth ...
4
votes
2answers
963 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
216 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
852 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
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
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
693 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
1answer
29 views

pyOpenGL color picking on windows

I have wxPython + pyOpenGL application that needs to be cross platform. Now for selection I implemented a color picking scheme, basically as follows: if len(self.pick_color_array) == 0: ...
2
votes
2answers
120 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
1answer
213 views

OpenGL - How does texturing affect shadows/lightning?

So the question is: when I switch from ColorPointers to Textures, it seems that the lightning/shadows effects are greatly reduced. Some solution that I have found but doesnt do that much is setting ...
2
votes
2answers
996 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
567 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
593 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 ...
2
votes
1answer
877 views

Count image similarity on GPU [OpenGL/OcclusionQuery]

OpenGL. Let's say I've drawn one image and then the second one using XOR. Now I've got black buffer with non-black pixels somewhere, I've read that I can use shaders to count black [ rgb(0,0,0) ] ...
1
vote
1answer
52 views

glutInitDisplayMode causes segmentation fault

I'm trying to do my first pyopengl program but having some issues when calling the glutInitDisplayMode function. Here's what I did: blackbear@blackbear-laptop:~/Programmazione/python$ python Python ...
1
vote
1answer
117 views

OpenGL VBO shader

I have a 2D VBO object that represent points in 2D space. What is the best way to draw an arbitrary shape at that point? Lets say I wanted to draw a red 'X' at each. Can I use a shader to do this?
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
129 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
133 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
215 views

OpenGL shaders questions

Ok, This is my first attempt at using shaders so bare with me. I have a running program that uses glVertexPointer, glNormalPointer etc to draw a large number of elements. This works around 30 FPS. ...
1
vote
1answer
269 views

glTexCoordPointer seems to have no effect

I'm still trying to get a grasp of using textures and now I'm trying to use glTexCoordPointer in order to give each vertex a color specific to it's class. I've made some checks and here is the ...
1
vote
1answer
229 views

openGL textures beginner question - 1D Texture creation?

EDIT Ok I added some changes to my texture rendering, and I'm now at a point that it doesn't look how I want it but before I try to change anything I just want to be sure I'm on the right path. The ...
1
vote
2answers
1k views

glDrawArrays vs glDrawElements

Ok so I'm still struggling to get this to work. The important parts of my code are: def __init__(self, vertices, normals, triangles): self.bufferVertices = glGenBuffersARB(1) ...
1
vote
1answer
158 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
206 views

adding wxGLCanvas to wxPanel problem

I'm trying to integrate OpenGL into a simple wx application. So I googled around and found a working example of a class that extends wxGLCanvas and draws a sphere that works. However this is added to ...
1
vote
1answer
343 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
530 views

OpenGL out of memory error, large FBO

I'm getting out of memory errors when creating a large (2^13) framebuffer object in PyOpenGL/PyQt: width = 8192 height = 8192 self.textureFbo = ...
1
vote
1answer
234 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
2answers
634 views

Geometry shader doesn't do anything when fed GL_POINTS

I'm trying to use geometry shaders to turn points into line segments (GL_POINTS to GL_LINE_STRIP), but no line segments appear. If I change the input to GL_LINES, and just repeat the vertex, then I ...
1
vote
0answers
152 views

No acceleration for OpenGL and ImportError for modules that exist

I'm writing a program using wxPython and OpenGL. The program works, but without any antialiasing, and I get these error messages: (I'm using ArchLinux) INFO:OpenGL.acceleratesupport:No ...
1
vote
3answers
990 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
42 views

opengl select sphere with mouse

I have a number of spheres in 3d space which the user should be able to select with a mouse click. Now I've seen some examples around using gluUnProject so I gave it a shot. So I have (please correct ...
0
votes
1answer
50 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

Rendering textures in pyopengl

I am trying to get the basics of how texture rendering work and doing it with pyopengl as I've worked for a time with it. I have read some documentation, from the red book to tutorials, but my ...
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
77 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
1answer
40 views

rendering textures with integer internal format

I wish to create and operate textures with integer internal format (for further interop with opencl). However it seems I've missed something important in question of mapping this texture. Here is a ...
0
votes
1answer
71 views

glsl pyOpenGL array passing

I'm currently playing around with glsl. For that purpose i need to pass an array from the opengl code to the gsls, which then in return calculates a new color out of the array. But somehow this ...
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
2answers
101 views

rotating model while color updating

In OpenGL, I draw tree(composed of lines) like structure(neurons), and based on activity, i apply a color on each of the branches of the tree. Each branch portion may have a different color at an ...
0
votes
1answer
79 views

glInterleavedArray formats

I have an interleaved array format and I want to render it in open GL. It is an array of triangles. The vertices are 2D floating points and the colors are RGBA floating points. That is, a single ...

1 2