Comment 6 for bug 289925

Revision history for this message
Robert Gibbs (gibbsrc) wrote :

I have seen this bug on two i386 machines. Both were recently upgraded from 8.04 to 8.10. One machine has a Radeon card, the other an Intel on-board.

I have found that if I call glutCreateWindow() before calling glutInitDisplayMode() the problem goes away most of the time.

Python 2.5.2 (r252:60911, Oct 5 2008, 19:24:49)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from OpenGL.GL import *
>>> from OpenGL.GLU import *
>>> from OpenGL.GLUT import *
>>> glutInit([''])
['']
>>> glutCreateWindow('this is a test')
1
>>> glutInitDisplayMode (GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH)
>>>