X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=hacks%2Fglx%2Fhypnowheel.c;h=4a8fe5e2a0c93183c923918aced8296f3569c1b5;hb=4361b69d3178d7fc98d0388f9a223af6c2651aba;hp=508229016decf6a94b2f80e09c54db7304f4647a;hpb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e;p=xscreensaver diff --git a/hacks/glx/hypnowheel.c b/hacks/glx/hypnowheel.c index 50822901..4a8fe5e2 100644 --- a/hacks/glx/hypnowheel.c +++ b/hacks/glx/hypnowheel.c @@ -22,6 +22,7 @@ "*showFPS: False \n" \ "*fpsSolid: True \n" \ "*wireframe: False \n" \ + "*suppressRotationAnimation: True\n" \ # define refresh_hypnowheel 0 # define release_hypnowheel 0 @@ -149,6 +150,14 @@ reshape_hypnowheel (ModeInfo *mi, int width, int height) 0.0, 0.0, 0.0, 0.0, 1.0, 0.0); +# ifdef HAVE_MOBILE /* Keep it the same relative size when rotated. */ + { + int o = (int) current_device_rotation(); + if (o != 0 && o != 180 && o != -180) + glScalef (1/h, 1/h, 1/h); + } +# endif + glClear(GL_COLOR_BUFFER_BIT); } @@ -160,14 +169,7 @@ init_hypnowheel (ModeInfo *mi) int wire = MI_IS_WIREFRAME(mi); int i; - if (!bps) { - bps = (hypnowheel_configuration *) - calloc (MI_NUM_SCREENS(mi), sizeof (hypnowheel_configuration)); - if (!bps) { - fprintf(stderr, "%s: out of memory\n", progname); - exit(1); - } - } + MI_INIT (mi, bps, NULL); bp = &bps[MI_SCREEN(mi)];