X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fsurfaces.c;h=9dac523bfb649778a38ad5aae086feccefa4fc75;hp=459d12245a257e7b1af45c28288872b5ae46aced;hb=6f5482d73adb0165c0130bb47d852644ab0c4869;hpb=c70f94f648d51bb4828193124f325fa52b0e57f3 diff --git a/hacks/glx/surfaces.c b/hacks/glx/surfaces.c index 459d1224..9dac523b 100644 --- a/hacks/glx/surfaces.c +++ b/hacks/glx/surfaces.c @@ -163,7 +163,10 @@ static void draw(ModeInfo *mi) get_position(sp->rot, &x, &y, &z, !sp->button_down_p); glTranslatef((x-0.5)*10, (y-0.5)*10, (z-0.5)*20); + /* Do it twice because we don't track the device's orientation. */ + glRotatef( current_device_rotation(), 0, 0, 1); gltrackball_rotate(sp->trackball); + glRotatef(-current_device_rotation(), 0, 0, 1); get_rotation(sp->rot, &x, &y, &z, !sp->button_down_p); glRotatef(x*360, 1.0, 0.0, 0.0);