On 4/19/08, giggity <[EMAIL PROTECTED]> wrote: > > Here is my code: > #!/usr/bin/pythonw > from pyglet.gl import * > glEnable(GL_BLEND) > > This code produces: > Bus error > > System: > OS X 10.5.2 > Python 2.5.1 r251:54863 > pyglet.version 1.0 > > Let me know if anyone can reproduce this, or if you have any > suggestions for fixing it
pyglet 1.0 requires you to create a window before using any OpenGL functions. In pyglet 1.1 a hidden window is created for you to avoid this common mistake. Alex. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en -~----------~----~----~----~------~----~------~--~---
