From 8fa507592b7bdb087c9eb32ed2322cb805b724ec Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 13 Jun 2003 02:42:57 +0000 Subject: fix typo, added space/anim control --- progs/demos/arbocclude.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'progs') diff --git a/progs/demos/arbocclude.c b/progs/demos/arbocclude.c index 959e9763b6..30d95dfd67 100644 --- a/progs/demos/arbocclude.c +++ b/progs/demos/arbocclude.c @@ -1,5 +1,5 @@ /* - * GL_ARB_occlustion_query demo + * GL_ARB_occlusion_query demo * * Brian Paul * 12 June 2003 @@ -33,6 +33,7 @@ #include +static GLboolean Anim = GL_TRUE; static GLfloat Xpos = 0; static GLuint OccQuery; @@ -183,6 +184,13 @@ static void Key( unsigned char key, int x, int y ) case 27: exit(0); break; + case ' ': + Anim = !Anim; + if (Anim) + glutIdleFunc(Idle); + else + glutIdleFunc(NULL); + break; } glutPostRedisplay(); } -- cgit v1.2.3