diff options
author | Keith Whitwell <[email protected]> | 2007-11-25 15:06:54 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2007-12-09 14:06:00 +0000 |
commit | b1399a5dd20fad801ee10383143439f8cf4615db (patch) | |
tree | 7a8bc67ae96af42f5831e51ed5c29d7402fc2482 /progs/trivial/point-param.c | |
parent | b47836225185c8d2e2ccf3e191230304709d0a57 (diff) |
gallium: more trivial tests
Diffstat (limited to 'progs/trivial/point-param.c')
-rw-r--r-- | progs/trivial/point-param.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/trivial/point-param.c b/progs/trivial/point-param.c index c50b7cb1034..be4328d9995 100644 --- a/progs/trivial/point-param.c +++ b/progs/trivial/point-param.c @@ -80,13 +80,13 @@ static void Draw(void) glBegin(GL_POINTS); glColor3f(1,0,0); - glVertex3f( 0.9, -0.9, -30.0); + glVertex3f( 0.9, -0.9, -10.0); glColor3f(1,1,0); - glVertex3f( 0.9, 0.9, -30.0); + glVertex3f( 0.9, 0.9, -5.0); glColor3f(1,0,1); glVertex3f(-0.9, 0.9, -30.0); glColor3f(0,1,1); - glVertex3f(-0.9, -0.9, -30.0); + glVertex3f(-0.9, -0.9, -20.0); glEnd(); glFlush(); |