diff options
author | Brian Paul <[email protected]> | 2008-05-20 13:38:59 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-20 13:38:59 -0600 |
commit | a3f9ae4feada23a3b03b611bd34fac09410367c9 (patch) | |
tree | ab607baa78157a88b01a63d551c8469b47995909 /progs | |
parent | 5c431c22227fdc552b34a5feabf1d339dcfe9848 (diff) |
mesa: call glutDestroyWindow()
Diffstat (limited to 'progs')
-rw-r--r-- | progs/demos/drawpix.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/progs/demos/drawpix.c b/progs/demos/drawpix.c index d2f57486744..5490bcc6355 100644 --- a/progs/demos/drawpix.c +++ b/progs/demos/drawpix.c @@ -28,6 +28,7 @@ static GLfloat Zpos = -1.0; static float Xzoom, Yzoom; static GLboolean DrawFront = GL_FALSE; static GLboolean Dither = GL_TRUE; +static int win = 0; static void Reset( void ) @@ -215,6 +216,7 @@ static void Key( unsigned char key, int x, int y ) printf("glDrawBuffer(%s)\n", DrawFront ? "GL_FRONT" : "GL_BACK"); break; case 27: + glutDestroyWindow(win); exit(0); break; } @@ -343,7 +345,7 @@ int main( int argc, char *argv[] ) else glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE); - glutCreateWindow(argv[0]); + win = glutCreateWindow(argv[0]); Init(ciMode, filename); Usage(); |