PyOpenGL: Why does "glutCreateWindow" suddenly make my application crash?

333 views Asked by At

Can someone please explain to me why the following code does not work anymore? And maybe help me get it to work again?

(Python 3.5.2 32bit)

from OpenGL.GLUT import *
glutInit()
glutInitWindowSize(600, 400)
glutCreateWindow(b'window')

I was using it like this on windows for a long time without any problems. But now it crashes: screenshot

Appreciate any help. Thank you!

0

There are 0 answers