diff options
author | Brian <[email protected]> | 2007-04-20 11:59:18 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-04-21 10:05:05 -0600 |
commit | bc74cb4c0ae6210eab403ee879492fc19644b3f2 (patch) | |
tree | b5e158c7b15886ea8c64ac774b04ce0e05200219 /progs/demos/fplight.c | |
parent | 257f799849a1eb3e81851b92a8fd27efa8f93d47 (diff) |
destroy window upon exit
Diffstat (limited to 'progs/demos/fplight.c')
-rw-r--r-- | progs/demos/fplight.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/demos/fplight.c b/progs/demos/fplight.c index c7a38248d38..fb510cccc8a 100644 --- a/progs/demos/fplight.c +++ b/progs/demos/fplight.c @@ -24,7 +24,7 @@ static GLuint VertProg; static GLboolean Anim = GL_TRUE; static GLboolean Wire = GL_FALSE; static GLboolean PixelLight = GL_TRUE; - +static GLint Win; static GLfloat Xrot = 0, Yrot = 0; @@ -136,8 +136,8 @@ static void Key( unsigned char key, int x, int y ) } break; case 27: + glutDestroyWindow(Win); exit(0); - break; } glutPostRedisplay(); } @@ -272,7 +272,7 @@ int main( int argc, char *argv[] ) glutInitWindowPosition( 0, 0 ); glutInitWindowSize( 200, 200 ); glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH ); - glutCreateWindow(argv[0]); + Win = glutCreateWindow(argv[0]); glutReshapeFunc( Reshape ); glutKeyboardFunc( Key ); glutSpecialFunc( SpecialKey ); |