Tagged Questions
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:
...
1
vote
1answer
205 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
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 ...
0
votes
1answer
133 views
wxPython, OpenGL.GLU import ordering matters?
I'm in the following situation. I have a module with a GLCanvas, a wx.Panel that contains the canvas and some buttons and a frame that displays them. Now my imports are as follow:
from OpenGL.GLU ...