X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fpulsar.c;h=869933b6e24a4c89e11935b5d062eaf87187a4fa;hb=39809ded547bdbb08207d3e514950425215b4410;hp=06301d171cd18aef142823a527815f1b0f7d1ce2;hpb=d6b0217f2417bd19187f0ebc389d6c5c2233b11c;p=xscreensaver diff --git a/hacks/glx/pulsar.c b/hacks/glx/pulsar.c index 06301d17..869933b6 100644 --- a/hacks/glx/pulsar.c +++ b/hacks/glx/pulsar.c @@ -44,8 +44,8 @@ #define DEFAULTS "*delay: 10000 \n" \ "*showFPS: False \n" \ -# define refresh_pulsar 0 -# define pulsar_handle_event 0 +# define release_pulsar 0 +# define pulsar_handle_event xlockmore_no_events # include "xlockmore.h" /* from the xpulsar distribution */ #else /* !STANDALONE */ # include "xlock.h" /* from the xlockmore distribution */ @@ -160,8 +160,8 @@ ENTRYPOINT ModeSpecOpt pulsar_opts = {countof(opts), opts, countof(vars), vars, #ifdef USE_MODULES ModStruct pulsar_description = -{"pulsar", "init_pulsar", "draw_pulsar", "release_pulsar", - "draw_pulsar", "init_pulsar", NULL, &pulsar_opts, +{"pulsar", "init_pulsar", "draw_pulsar", NULL, + "draw_pulsar", "init_pulsar", "free_pulsar", &pulsar_opts, 1000, 1, 2, 1, 4, 1.0, "", "OpenGL pulsar", 0, NULL}; #endif @@ -488,10 +488,7 @@ init_pulsar(ModeInfo * mi) pulsarstruct *gp; - if (Pulsar == NULL) { - if ((Pulsar = (pulsarstruct *) calloc(MI_NUM_SCREENS(mi), sizeof (pulsarstruct))) == NULL) - return; - } + MI_INIT (mi, Pulsar); gp = &Pulsar[screen]; gp->window = MI_WINDOW(mi); @@ -508,18 +505,10 @@ init_pulsar(ModeInfo * mi) /* all sorts of nice cleanup code should go here! */ -ENTRYPOINT void release_pulsar(ModeInfo * mi) +ENTRYPOINT void free_pulsar(ModeInfo * mi) { - int screen; - if (Pulsar != NULL) { - for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) { - pulsarstruct *gp = &Pulsar[screen]; - free(gp->quads); - } - (void) free((void *) Pulsar); - Pulsar = NULL; - } - FreeAllGL(mi); + pulsarstruct *gp = &Pulsar[MI_SCREEN(mi)]; + free(gp->quads); } #endif