summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
Diffstat (limited to 'progs')
-rw-r--r--progs/demos/occlude.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/demos/occlude.c b/progs/demos/occlude.c
index e26446059b..8f7b90984e 100644
--- a/progs/demos/occlude.c
+++ b/progs/demos/occlude.c
@@ -34,6 +34,7 @@
static GLfloat Xpos = 0;
+static GLboolean Anim = GL_TRUE;
static void
@@ -171,6 +172,13 @@ static void Key( unsigned char key, int x, int y )
(void) x;
(void) y;
switch (key) {
+ case 'a':
+ Anim = !Anim;
+ if (Anim)
+ glutIdleFunc( Idle );
+ else
+ glutIdleFunc( NULL );
+ break;
case 27:
exit(0);
break;