From ae69a754244c4e475c8d2591772ca8e005071d83 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Mon, 18 Feb 2019 11:55:41 +0100 Subject: Update to 5.42 --- hacks/glx/carousel.c | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'hacks/glx/carousel.c') diff --git a/hacks/glx/carousel.c b/hacks/glx/carousel.c index 863b1a5..c1132b1 100644 --- a/hacks/glx/carousel.c +++ b/hacks/glx/carousel.c @@ -34,7 +34,6 @@ "*grabDesktopImages: False \n" \ "*chooseRandomImages: True \n" -# define free_carousel 0 # define release_carousel 0 # include "xlockmore.h" @@ -497,6 +496,7 @@ hack_resources (Display *dpy) value.addr = buf2; value.size = strlen(buf2); XrmPutResource (&db, buf1, "String", &value); + free (val); # endif /* !HAVE_JWXYZ */ } @@ -847,7 +847,7 @@ draw_carousel (ModeInfo *mi) if (!ss->glx_context) return; - glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *(ss->glx_context)); + glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *ss->glx_context); if (ss->awaiting_first_images_p) if (!load_initial_images (mi)) @@ -936,6 +936,29 @@ draw_carousel (ModeInfo *mi) glXSwapBuffers (MI_DISPLAY (mi), MI_WINDOW(mi)); } + +ENTRYPOINT void +free_carousel (ModeInfo *mi) +{ + carousel_state *ss = &sss[MI_SCREEN(mi)]; + int i; + if (!ss->glx_context) return; + glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *ss->glx_context); + if (ss->rot) free_rotator (ss->rot); + if (ss->trackball) gltrackball_free (ss->trackball); + if (ss->texfont) free_texture_font (ss->texfont); + if (ss->titlefont) free_texture_font (ss->titlefont); + for (i = 0; i < ss->nframes; i++) { + if (ss->frames[i]->current.title) free (ss->frames[i]->current.title); + if (ss->frames[i]->loading.title) free (ss->frames[i]->loading.title); + if (ss->frames[i]->rot) free_rotator (ss->frames[i]->rot); + if (ss->frames[i]->current.texid) + glDeleteTextures (1, &ss->frames[i]->current.texid); + if (ss->frames[i]->loading.texid) + glDeleteTextures (1, &ss->frames[i]->loading.texid); + } +} + XSCREENSAVER_MODULE ("Carousel", carousel) #endif /* USE_GL */ -- cgit v1.2.3-55-g7522