diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2004-01-27 16:18:00 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2004-01-27 16:18:00 +0000 |
commit | 740f7de085f143b2bb1fe623d68c5efb3560e1a7 (patch) | |
tree | fa174a1902d70e38e726980169e64647e0b299de /progs/demos | |
parent | 727d345b41c396af419a389808fdaec11aeafc3e (diff) |
Tweak: set z scale to one, else tnl thinks we have a 3d texcoord.
Diffstat (limited to 'progs/demos')
-rw-r--r-- | progs/demos/multiarb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/demos/multiarb.c b/progs/demos/multiarb.c index 20aa29f996..6fe35e7fdd 100644 --- a/progs/demos/multiarb.c +++ b/progs/demos/multiarb.c @@ -52,7 +52,7 @@ static void Idle( void ) glLoadIdentity(); if (i == 0) { glTranslatef(Drift, 0.0, 0.0); - glScalef(2, 2, 2); + glScalef(2, 2, 1); } else if (i == 1) { glTranslatef(0.0, Drift, 0.0); |