X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fcubestorm.c;h=9c278b135e38c97524cce08f645eae43bebcbf3b;hb=aa75c7476aeaa84cf3abc192b376a8b03c325213;hp=b5bba46ed6d1f97ccb7d6b02735bd09445b6b2a0;hpb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e;p=xscreensaver diff --git a/hacks/glx/cubestorm.c b/hacks/glx/cubestorm.c index b5bba46e..9c278b13 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); } @@ -291,7 +300,6 @@ init_cube (ModeInfo *mi) draw_faces (mi); glEndList (); - glDrawBuffer(dbuf_p ? GL_BACK : GL_FRONT); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); } @@ -309,6 +317,8 @@ draw_cube (ModeInfo *mi) if (!bp->glx_context) return; + glDrawBuffer(dbuf_p ? GL_BACK : GL_FRONT); + glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *(bp->glx_context)); glShadeModel(GL_SMOOTH);