X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fcubenetic.c;h=95d8b6518d127fe1f9cd8a2daef8784c01d1c194;hp=9d91268aedda64563ed12ed8aafda4ea851785e6;hb=4361b69d3178d7fc98d0388f9a223af6c2651aba;hpb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e diff --git a/hacks/glx/cubenetic.c b/hacks/glx/cubenetic.c index 9d91268a..95d8b651 100644 --- a/hacks/glx/cubenetic.c +++ b/hacks/glx/cubenetic.c @@ -13,6 +13,7 @@ "*count: 5 \n" \ "*showFPS: False \n" \ "*wireframe: False \n" \ + "*suppressRotationAnimation: True\n" \ # define refresh_cube 0 # define release_cube 0 @@ -199,6 +200,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); } @@ -383,14 +392,7 @@ init_cube (ModeInfo *mi) cube_configuration *cc; int wire = MI_IS_WIREFRAME(mi); - if (!ccs) { - ccs = (cube_configuration *) - calloc (MI_NUM_SCREENS(mi), sizeof (cube_configuration)); - if (!ccs) { - fprintf(stderr, "%s: out of memory\n", progname); - exit(1); - } - } + MI_INIT (mi, ccs, NULL); cc = &ccs[MI_SCREEN(mi)];