X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fcarousel.c;fp=hacks%2Fglx%2Fcarousel.c;h=119c9bb6bdbdf130f64e6e87a0b6ff87044ecaf7;hp=7f7a8da628a267761048e3f9aaecf21a2ea4c06e;hb=39809ded547bdbb08207d3e514950425215b4410;hpb=4361b69d3178d7fc98d0388f9a223af6c2651aba diff --git a/hacks/glx/carousel.c b/hacks/glx/carousel.c index 7f7a8da6..119c9bb6 100644 --- a/hacks/glx/carousel.c +++ b/hacks/glx/carousel.c @@ -24,7 +24,7 @@ "*grabDesktopImages: False \n" \ "*chooseRandomImages: True \n" -# define refresh_carousel 0 +# define free_carousel 0 # define release_carousel 0 # include "xlockmore.h" @@ -232,6 +232,11 @@ load_image (ModeInfo *mi, image_frame *frame) int h = (MI_HEIGHT(mi) / 2) - 1; if (w <= 10) w = 10; if (h <= 10) h = 10; + + if (w > h * 5) { /* tiny window: use 16:9 boxes */ + h = w * 9/16; + } + load_texture_async (mi->xgwa.screen, mi->window, *ss->glx_context, w, h, mipmap_p, frame->loading.texid, image_loaded_cb, frame); @@ -399,8 +404,15 @@ ENTRYPOINT void reshape_carousel (ModeInfo *mi, int width, int height) { GLfloat h = (GLfloat) height / (GLfloat) width; + int y = 0; + + if (width > height * 5) { /* tiny window: show middle */ + height = width * 9/16; + y = -height/2; + h = height / (GLfloat) width; + } - glViewport (0, 0, (GLint) width, (GLint) height); + glViewport (0, y, (GLint) width, (GLint) height); glMatrixMode(GL_PROJECTION); glLoadIdentity(); @@ -563,7 +575,7 @@ init_carousel (ModeInfo *mi) carousel_state *ss; int wire = MI_IS_WIREFRAME(mi); - MI_INIT (mi, sss, NULL); + MI_INIT (mi, sss); ss = &sss[screen]; if ((ss->glx_context = init_GL(mi)) != NULL) {