mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-19 08:10:32 +01:00
mesa: destroy window upon exit
This commit is contained in:
parent
9d1444092f
commit
8bef18f47b
1 changed files with 4 additions and 1 deletions
|
|
@ -27,6 +27,8 @@
|
|||
#define LINEAR_FILTER 21
|
||||
#define QUIT 100
|
||||
|
||||
static GLint Win = -1;
|
||||
|
||||
static GLuint CylinderObj = 0;
|
||||
static GLboolean Animate = GL_TRUE;
|
||||
|
||||
|
|
@ -159,6 +161,7 @@ static void Key( unsigned char key, int x, int y )
|
|||
glutIdleFunc(NULL);
|
||||
break;
|
||||
case 27:
|
||||
glutDestroyWindow(Win);
|
||||
exit(0);
|
||||
break;
|
||||
}
|
||||
|
|
@ -263,7 +266,7 @@ int main( int argc, char *argv[] )
|
|||
|
||||
glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE );
|
||||
|
||||
glutCreateWindow(argv[0] );
|
||||
Win = glutCreateWindow(argv[0] );
|
||||
|
||||
Init(argc, argv);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue