X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fblocktube.c;h=51f2f3db758fd2fdc3472cfb5cb089eca43c76cd;hp=69605e7e3c48fc3c843103340e155f38a02d2c20;hb=aa75c7476aeaa84cf3abc192b376a8b03c325213;hpb=88cfe534a698a0562e81345957a50714af1453bc diff --git a/hacks/glx/blocktube.c b/hacks/glx/blocktube.c index 69605e7e..51f2f3db 100644 --- a/hacks/glx/blocktube.c +++ b/hacks/glx/blocktube.c @@ -16,6 +16,7 @@ #define DEFAULTS "*delay: 40000 \n" \ "*wireframe: False \n" \ "*showFPS: False \n" \ + "*suppressRotationAnimation: True\n" \ # define refresh_blocktube 0 # define blocktube_handle_event 0 @@ -321,6 +322,14 @@ ENTRYPOINT void reshape_blocktube (ModeInfo *mi, int width, int height) glLoadIdentity(); gluPerspective(45.0, 1/h, 1.0, 100.0); glMatrixMode(GL_MODELVIEW); + +# 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 } static int cube_vertices(float x, float y, float z, int wire)