X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=progs%2Fdemos%2Farbocclude.c;h=6bf4fd218b900052b1237162c6c1a204d11a7f55;hb=9136c9b29ed5c14bc89a4c4e3a391e0b097092e1;hp=ddbb1f1b759bb37b19ec8b75d2d805e449be8fa9;hpb=b58091a336d767bf82dbf12d6161997206a44bcf;p=mesa.git diff --git a/progs/demos/arbocclude.c b/progs/demos/arbocclude.c index ddbb1f1b759..6bf4fd218b9 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 );