summaryrefslogtreecommitdiff
path: root/progs/tests/fbotexture.c
diff options
context:
space:
mode:
authorBrian <brian@yutani.localnet.net>2007-03-06 16:33:00 -0700
committerBrian <brian@yutani.localnet.net>2007-03-06 16:33:00 -0700
commit2282d815360c2087dd080c794084bea65e6da358 (patch)
tree1e8707ee8e1503205aa5323b9decb6fd054e4bed /progs/tests/fbotexture.c
parent0af1c6b5d1e2a5560f92b93b5429f70b49449ddb (diff)
destroy window during cleanup
Diffstat (limited to 'progs/tests/fbotexture.c')
-rw-r--r--progs/tests/fbotexture.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/tests/fbotexture.c b/progs/tests/fbotexture.c
index 13a29db3f3..aa9f617122 100644
--- a/progs/tests/fbotexture.c
+++ b/progs/tests/fbotexture.c
@@ -23,6 +23,7 @@
#define DRAW 1
+static int Win = 0;
static int Width = 400, Height = 400;
static GLenum TexTarget = GL_TEXTURE_2D; /*GL_TEXTURE_RECTANGLE_ARB;*/
@@ -232,6 +233,8 @@ CleanUp(void)
glDeleteTextures(1, &TexObj);
+ glutDestroyWindow(Win);
+
exit(0);
}
@@ -392,7 +395,7 @@ main(int argc, char *argv[])
glutInitWindowPosition(0, 0);
glutInitWindowSize(Width, Height);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
- glutCreateWindow(argv[0]);
+ Win = glutCreateWindow(argv[0]);
glutReshapeFunc(Reshape);
glutKeyboardFunc(Key);
glutDisplayFunc(Display);