Richard's suggestions did not work for me (I get the same error, even
with PYGLET_VSYNC=0).

I'll try to install a newer driver (do you know where I get one?).

Denis


On Jan 11, 2008 12:02 AM, Alex Holkner <[EMAIL PROTECTED]> wrote:
>
> On 1/11/08, Denis Simakov <[EMAIL PROTECTED]> wrote:
> > OpenGL vendor string: Tungsten Graphics, Inc
> > OpenGL renderer string: Mesa DRI Intel(R) 915GM 20050225
> >  OpenGL version string: 1.3 Mesa 6.4.1
>
> This is a very old driver.  If Richard's suggestion does not work,  I
> would recommend upgrading to the latest Mesa.
>
> Alex.

On Jan 10, 2008 10:52 PM, Richard Jones <[EMAIL PROTECTED]> wrote:
> 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