diff options
author | Brian Paul <[email protected]> | 2003-05-30 15:30:16 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-05-30 15:30:16 +0000 |
commit | 785774deb261512b69789682078c31c35f508baa (patch) | |
tree | 8355f839c17122ec4fc81d3a9514f740a55fb708 /progs/tests/texwrap.c | |
parent | dc3e0f0f5da32be3d5350438a2e8bd19c1ad14bd (diff) |
applied Ian's misc patches
Diffstat (limited to 'progs/tests/texwrap.c')
-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 7751afd46b1..2602f3210de 100644 --- a/progs/tests/texwrap.c +++ b/progs/tests/texwrap.c @@ -1,4 +1,4 @@ -/* $Id: texwrap.c,v 1.5 2003/02/04 02:35:00 brianp Exp $ */ +/* $Id: texwrap.c,v 1.6 2003/05/30 15:30:17 brianp Exp $ */ /* * Test texture wrap modes. @@ -35,7 +35,7 @@ #define SIZE 8 static GLubyte BorderImage[SIZE+2][SIZE+2][4]; static GLubyte NoBorderImage[SIZE][SIZE][4]; -static GLuint Border = 1; +static GLuint Border = 0; #define WRAP_MODE(m) { m , # m, GL_TRUE, 1.0, { NULL, NULL } } @@ -142,7 +142,7 @@ static void Display( void ) /* loop over border modes */ for (j = 0; j < modes[j].mode != 0; j++) { const GLfloat x0 = 0, y0 = 0, x1 = 140, y1 = 140; - const GLfloat b = 0.2; + const GLfloat b = 1.2; const GLfloat s0 = -b, t0 = -b, s1 = 1.0+b, t1 = 1.0+b; if ( modes[j].supported != GL_TRUE ) |