X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fcubestorm.c;h=3137c862dcac747a1b8d2e4462233695597d77fc;hp=f3fd88bbb262f6eed0889857185963b81e7723f8;hb=4361b69d3178d7fc98d0388f9a223af6c2651aba;hpb=d5186197bc394e10a4402f7f6d23fbb14103bc50 diff --git a/hacks/glx/cubestorm.c b/hacks/glx/cubestorm.c index f3fd88bb..3137c862 100644 --- a/hacks/glx/cubestorm.c +++ b/hacks/glx/cubestorm.c @@ -14,6 +14,7 @@ "*showFPS: False \n" \ "*fpsSolid: True \n" \ "*wireframe: False \n" \ + "*suppressRotationAnimation: True\n" \ # define refresh_cube 0 @@ -174,6 +175,14 @@ reshape_cube (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 | GL_DEPTH_BUFFER_BIT); } @@ -217,14 +226,7 @@ init_cube (ModeInfo *mi) int wire = MI_IS_WIREFRAME(mi); int i; - if (!bps) { - bps = (cube_configuration *) - calloc (MI_NUM_SCREENS(mi), sizeof (cube_configuration)); - if (!bps) { - fprintf(stderr, "%s: out of memory\n", progname); - exit(1); - } - } + MI_INIT (mi, bps, NULL); # ifdef HAVE_JWZGLES dbuf_p = True;