search for: fdd9442

Displaying 1 result from an estimated 1 matches for "fdd9442".

Did you mean: fcd7442
2007 Jun 12
0
[PATCH] Added rotation state.
...e.c @@ -1859,6 +1859,8 @@ cubeInitScreen (CompPlugin *p, cs->bg = NULL; cs->nBg = 0; + cs->rotationState = RotationNone; + memset (cs->cleared, 0, sizeof (cs->cleared)); cubeUpdateOutputs (s); diff --git a/plugins/rotate.c b/plugins/rotate.c index 7aecd56..fdd9442 100644 --- a/plugins/rotate.c +++ b/plugins/rotate.c @@ -346,6 +346,9 @@ rotatePreparePaintScreen (CompScreen *s, else tx = (s->hsize * xrot / 360.0f) + 0.5f; + /* flag end of rotation */ + cs->rotationState = RotationNone; + moveScreenViewport (s, tx, 0, TRUE);...