X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fantspotlight.c;h=55bb80cd51158d03db785e586be717a6fef5bcf5;hp=6b3897a360a4717ad374f0b17882f4b170e6dd92;hb=39809ded547bdbb08207d3e514950425215b4410;hpb=4361b69d3178d7fc98d0388f9a223af6c2651aba diff --git a/hacks/glx/antspotlight.c b/hacks/glx/antspotlight.c index 6b3897a3..55bb80cd 100644 --- a/hacks/glx/antspotlight.c +++ b/hacks/glx/antspotlight.c @@ -19,7 +19,7 @@ "*showFPS: False \n" \ "*useSHM: True \n" -# define refresh_antspotlight 0 +# define free_antspotlight 0 # define release_antspotlight 0 #include "xlockmore.h" #else @@ -552,8 +552,16 @@ static void draw_antspotlight_strip(ModeInfo *mi) ENTRYPOINT void reshape_antspotlight(ModeInfo * mi, int width, int height) { double h = (GLfloat) height / (GLfloat) width; + int y = 0; int size = 2; - glViewport(0, 0, width, height); + + if (width > height * 5) { /* tiny window: show middle */ + height = width * 9/16; + y = -height/2; + h = height / (GLfloat) width; + } + + glViewport(0, y, width, height); glMatrixMode(GL_PROJECTION); glLoadIdentity(); @@ -697,7 +705,7 @@ ENTRYPOINT void init_antspotlight(ModeInfo *mi) antspotlightstruct *mp; - MI_INIT(mi, antspotlight, NULL); + MI_INIT(mi, antspotlight); mp = &antspotlight[MI_SCREEN(mi)]; mp->rot = make_rotator (rot_speed, rot_speed, rot_speed, 1, 0, True); mp->trackball = gltrackball_init (False);