summaryrefslogtreecommitdiffstats
path: root/hacks/glx/vigilance.c
diff options
context:
space:
mode:
Diffstat (limited to 'hacks/glx/vigilance.c')
-rw-r--r--hacks/glx/vigilance.c30
1 files changed, 28 insertions, 2 deletions
diff --git a/hacks/glx/vigilance.c b/hacks/glx/vigilance.c
index 05e19ed..49f0df5 100644
--- a/hacks/glx/vigilance.c
+++ b/hacks/glx/vigilance.c
@@ -22,7 +22,6 @@
"*lensColor: #000000" "\n" \
"*groundColor: #004400" "\n" \
-# define free_camera 0
# define release_camera 0
#undef countof
#define countof(x) (sizeof((x))/sizeof((*x)))
@@ -210,6 +209,7 @@ parse_color (ModeInfo *mi, char *key, GLfloat color[4])
key, string);
exit (1);
}
+ free (string);
color[0] = xcolor.red / 65536.0;
color[1] = xcolor.green / 65536.0;
@@ -1053,7 +1053,7 @@ draw_camera (ModeInfo *mi)
if (!bp->glx_context)
return;
- glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *(bp->glx_context));
+ glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *bp->glx_context);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
@@ -1145,6 +1145,32 @@ draw_camera (ModeInfo *mi)
glXSwapBuffers(dpy, window);
}
+
+ENTRYPOINT void
+free_camera (ModeInfo *mi)
+{
+ camera_configuration *bp = &bps[MI_SCREEN(mi)];
+ pedestrian *p;
+ int i;
+
+ if (!bp->glx_context) return;
+ glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *bp->glx_context);
+
+ if (bp->user_trackball) gltrackball_free (bp->user_trackball);
+ if (bp->cameras) free (bp->cameras);
+ p = bp->pedestrians;
+ while (p) {
+ pedestrian *p2 = p->next;
+ free (p);
+ p = p2;
+ }
+ if (bp->dlists) {
+ for (i = 0; i < countof(all_objs); i++)
+ if (glIsList(bp->dlists[i])) glDeleteLists(bp->dlists[i], 1);
+ free (bp->dlists);
+ }
+}
+
XSCREENSAVER_MODULE_2 ("Vigilance", vigilance, camera)
#endif /* USE_GL */