On Jan 11, 2008 12:38 AM, Denis Simakov <[EMAIL PROTECTED]> wrote:

> Here is the glxinfo output:
> OpenGL vendor string: Tungsten Graphics, Inc
> OpenGL renderer string: Mesa DRI Intel(R) 915GM 20050225
> OpenGL version string: 1.3 Mesa 6.4.1


I'm running the same hardware on an EEE PC and the example, when tweaked a
little (translate the text so it's visible), works for me. You will probably
need to set PYGLET_VSYNC=0 in your environment.

from pyglet import font, window, image, gl
win = window.Window()
text = font.Text(font.load('Arial', 36), 'Hi!')
gl.glTranslatef(win.width/2, win.height/2, 0)
while not win.has_exit:
   win.dispatch_events()
   win.clear()
   text.draw()
   win.flip()


         Richard

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to