summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-12-19 15:13:20 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2007-12-19 15:13:20 +0000
commitded6ce2bd56526dbd2b359457f259cc5b2a93eb8 (patch)
tree54a12198c3d199935783aa413755a9ac2b3c5338 /progs
parentae280f1ce90a7d95bf761efdfebc91ae5b379079 (diff)
vp-tri: match vertex/color data of other tests
Diffstat (limited to 'progs')
-rw-r--r--progs/trivial/vp-tri.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/progs/trivial/vp-tri.c b/progs/trivial/vp-tri.c
index b3ac52b509..d2ef5043b2 100644
--- a/progs/trivial/vp-tri.c
+++ b/progs/trivial/vp-tri.c
@@ -48,12 +48,12 @@ static void Display( void )
glEnable(GL_VERTEX_PROGRAM_NV);
glBegin(GL_TRIANGLES);
- glColor3f(0,0,1);
- glVertex3f( 0.9, -0.9, 0.0);
- glColor3f(0,1,0);
- glVertex3f( 0.9, 0.9, 0.0);
- glColor3f(1,0,0);
- glVertex3f(-0.9, 0.0, 0.0);
+ glColor3f(0,0,.7);
+ glVertex3f( 0.9, -0.9, -0.0);
+ glColor3f(.8,0,0);
+ glVertex3f( 0.9, 0.9, -0.0);
+ glColor3f(0,.9,0);
+ glVertex3f(-0.9, 0.0, -0.0);
glEnd();