diff options
author | Keith Whitwell <[email protected]> | 2008-09-21 12:22:21 -0700 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-21 12:22:21 -0700 |
commit | 3a40dee3eb5151a282ce831b67427f3aa625de28 (patch) | |
tree | a629edbc8a0e5a412faf0172c26013b81e79d462 /progs/tests | |
parent | 53dd838de6cd455f00f43ef7f733d4e9b420b8d8 (diff) | |
parent | 8701e5f702a0b15d44395268e2422c196d8f4efd (diff) |
Merge commit 'origin/gallium-0.1' into gallium-0.2
Diffstat (limited to 'progs/tests')
-rw-r--r-- | progs/tests/mipmap_view.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/tests/mipmap_view.c b/progs/tests/mipmap_view.c index 117e2017184..54607b89398 100644 --- a/progs/tests/mipmap_view.c +++ b/progs/tests/mipmap_view.c @@ -21,6 +21,8 @@ static int TexWidth = 256, TexHeight = 256; static int WinWidth = 1044, WinHeight = 900; static GLfloat Bias = 0.0; static GLboolean ScaleQuads = GL_FALSE; +static GLint Win = 0; + static void @@ -145,6 +147,7 @@ Key(unsigned char key, int x, int y) ScaleQuads = !ScaleQuads; break; case 27: + glutDestroyWindow(Win); exit(0); break; } @@ -238,7 +241,7 @@ main(int argc, char *argv[]) glutInitWindowPosition(0, 0); glutInitWindowSize(WinWidth, WinHeight); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE); - glutCreateWindow(argv[0]); + Win = glutCreateWindow(argv[0]); glutReshapeFunc(Reshape); glutKeyboardFunc(Key); glutDisplayFunc(Display); |