On 30/08/2007, at 12:45 AM, Alex Holkner wrote:
> You can use Tkinter to create the OpenGL context (for example, > PyOpenGL contains a Tk widget, or search "tkinter opengl" for more > examples), then use pyglet's gl, image, audio, video and font modules. On second thought, the image and font modules will be looking for an active context and won't find one. You should be able to create a "pretend" context to represent the one created by Tk:: from pyglet import gl c = gl.Context() c.set_current() Let me know how it goes. 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 -~----------~----~----~----~------~----~------~--~---
