From d2702f0022055dcf1df53d9fbad5ab4497d8ed35 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 2 Feb 2000 01:07:21 +0000 Subject: limit Drift to [0, 1] --- progs/demos/multiarb.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'progs/demos/multiarb.c') diff --git a/progs/demos/multiarb.c b/progs/demos/multiarb.c index 831842a738..cb22c66bbe 100644 --- a/progs/demos/multiarb.c +++ b/progs/demos/multiarb.c @@ -1,4 +1,4 @@ -/* $Id: multiarb.c,v 1.3 1999/10/21 16:40:32 brianp Exp $ */ +/* $Id: multiarb.c,v 1.4 2000/02/02 01:07:21 brianp Exp $ */ /* * GL_ARB_multitexture demo @@ -12,6 +12,9 @@ /* * $Log: multiarb.c,v $ + * Revision 1.4 2000/02/02 01:07:21 brianp + * limit Drift to [0, 1] + * * Revision 1.3 1999/10/21 16:40:32 brianp * added -info command line option * @@ -61,6 +64,8 @@ static void Idle( void ) { if (Animate) { Drift += 0.05; + if (Drift > 1.0) + Drift = 0.0; #ifdef GL_ARB_multitexture glActiveTextureARB(GL_TEXTURE0_ARB); -- cgit v1.2.3