diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-02-04 02:34:42 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-02-04 02:34:42 +0000 |
commit | 379c15198933cdfa9fb968750f9eb7ebad72cddf (patch) | |
tree | 8a33294bcc1ccda8a8cedd88ea9d163256fd4034 | |
parent | 379412994feb9a9a96164368a0f367a7cd253b55 (diff) |
use ARB flavor of window_pos extension
-rw-r--r-- | progs/tests/texwrap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/tests/texwrap.c b/progs/tests/texwrap.c index 108c67d4d1..f47b3fc7de 100644 --- a/progs/tests/texwrap.c +++ b/progs/tests/texwrap.c @@ -1,4 +1,4 @@ -/* $Id: texwrap.c,v 1.4 2002/10/18 17:47:36 kschultz Exp $ */ +/* $Id: texwrap.c,v 1.4.2.1 2003/02/04 02:34:42 brianp Exp $ */ /* * Test texture wrap modes. @@ -119,7 +119,7 @@ static void Display( void ) #if 0 /* draw texture as image */ glDisable(GL_TEXTURE_2D); - glWindowPos2iMESA(1, 1); + glWindowPos2iARB(1, 1); glDrawPixels(6, 6, GL_RGBA, GL_UNSIGNED_BYTE, (void *) TexImage); #endif @@ -183,7 +183,7 @@ static void Display( void ) offset = 0; for (i = 0; i < modes[i].mode != 0; i++) { if ( modes[i].supported ) { - glWindowPos2iMESA( offset * 150 + 10, 5 + ((offset & 1) * 15) ); + glWindowPos2iARB( offset * 150 + 10, 5 + ((offset & 1) * 15) ); PrintString(modes[i].name); offset++; } |