From: Keith Whitwell Date: Wed, 19 Dec 2007 15:13:20 +0000 (+0000) Subject: vp-tri: match vertex/color data of other tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ded6ce2bd56526dbd2b359457f259cc5b2a93eb8;p=mesa.git vp-tri: match vertex/color data of other tests --- diff --git a/progs/trivial/vp-tri.c b/progs/trivial/vp-tri.c index b3ac52b5099..d2ef5043b22 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();