summaryrefslogtreecommitdiff
path: root/progs/demos/tunnel.c
diff options
context:
space:
mode:
authorShuang He <shuang.he@intel.com>2009-04-27 07:13:33 -0600
committerBrian Paul <brianp@vmware.com>2009-04-27 07:13:33 -0600
commite32660060954c0d1a1f7636c6365970348f3be24 (patch)
tree95026a9d4a9705cbec430955ddbdfbf4b3a52a4f /progs/demos/tunnel.c
parentb618827fac84ca12a354da5808f30e96bedbc92a (diff)
demos: Clean up allocated Textures and Display Lists when demo quit
Diffstat (limited to 'progs/demos/tunnel.c')
-rw-r--r--progs/demos/tunnel.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/progs/demos/tunnel.c b/progs/demos/tunnel.c
index 6a240580e8..6981da3298 100644
--- a/progs/demos/tunnel.c
+++ b/progs/demos/tunnel.c
@@ -203,10 +203,18 @@ special(int k, int x, int y)
}
static void
+cleanup(void)
+{
+ glDeleteTextures(1, &t1id);
+ glDeleteTextures(1, &t2id);
+}
+
+static void
key(unsigned char k, int x, int y)
{
switch (k) {
case 27:
+ cleanup();
exit(0);
break;
@@ -531,5 +539,6 @@ main(int ac, char **av)
glutMainLoop();
+ cleanup();
return 0;
}