diff options
| author | Keith Whitwell <keith@tungstengraphics.com> | 2005-11-01 12:20:13 +0000 | 
|---|---|---|
| committer | Keith Whitwell <keith@tungstengraphics.com> | 2005-11-01 12:20:13 +0000 | 
| commit | a605d9c3de0e3ed91156f34cc713d4fc1ee0e587 (patch) | |
| tree | 1c7046ac8e41251b17466a4ee8dd4868dbd0b5ed | |
| parent | d9f362a66733cf016a54bae0a97805223d930062 (diff) | |
Make colors match the fp tests
| -rw-r--r-- | progs/vp/vp-tris.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/vp/vp-tris.c b/progs/vp/vp-tris.c index ff3f3f87f0..09733b669f 100644 --- a/progs/vp/vp-tris.c +++ b/progs/vp/vp-tris.c @@ -159,9 +159,9 @@ static void Display( void )        ASSIGN_3V(v[0].v.color, 0,0,1);         ASSIGN_3V(v[0].v.pos,  0.9, -0.9, 0.0); -      ASSIGN_3V(v[1].v.color, 0,1,0);  -      ASSIGN_3V(v[1].v.pos, 0.9, 0.9, 0.0);        ASSIGN_3V(v[2].v.color, 1,0,0);  +      ASSIGN_3V(v[1].v.pos, 0.9, 0.9, 0.0); +      ASSIGN_3V(v[1].v.color, 0,1,0);         ASSIGN_3V(v[2].v.pos, -0.9, 0, 0.0);        subdiv(&v[0], &v[1], &v[2], nr_steps);  | 
