summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-12-18 09:48:20 -0700
committerBrian Paul <brian.paul@tungstengraphics.com>2008-12-18 14:17:06 -0700
commit6c14bdc72fd033356cc94633622f1360591d565d (patch)
treea445efa0c342dcfc9426c8980a58160529d32952 /progs
parent8b0b881438484234f1ab4ac07fdb7ae4a0a66759 (diff)
demos: all glutDestroyWindow() upon exit to test query object clean-up
Diffstat (limited to 'progs')
-rw-r--r--progs/demos/arbocclude.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/progs/demos/arbocclude.c b/progs/demos/arbocclude.c
index ddbb1f1b75..6bf4fd218b 100644
--- a/progs/demos/arbocclude.c
+++ b/progs/demos/arbocclude.c
@@ -37,7 +37,7 @@
static GLboolean Anim = GL_TRUE;
static GLfloat Xpos = 0;
static GLuint OccQuery;
-
+static GLint Win = 0;
static void
@@ -204,6 +204,7 @@ static void Key( unsigned char key, int x, int y )
(void) y;
switch (key) {
case 27:
+ glutDestroyWindow(Win);
exit(0);
break;
case ' ':
@@ -271,7 +272,7 @@ int main( int argc, char *argv[] )
glutInitWindowPosition( 0, 0 );
glutInitWindowSize( 400, 400 );
glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH );
- glutCreateWindow(argv[0]);
+ Win = glutCreateWindow(argv[0]);
glutReshapeFunc( Reshape );
glutKeyboardFunc( Key );
glutSpecialFunc( SpecialKey );