summaryrefslogtreecommitdiff
path: root/progs/trivial/point-param.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-11-25 15:06:54 +0000
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2007-12-09 14:06:00 +0000
commitb1399a5dd20fad801ee10383143439f8cf4615db (patch)
tree7a8bc67ae96af42f5831e51ed5c29d7402fc2482 /progs/trivial/point-param.c
parentb47836225185c8d2e2ccf3e191230304709d0a57 (diff)
gallium: more trivial tests
Diffstat (limited to 'progs/trivial/point-param.c')
-rw-r--r--progs/trivial/point-param.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/trivial/point-param.c b/progs/trivial/point-param.c
index c50b7cb103..be4328d999 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();