Update to xserver 1.19.7. Tested by jca@ and stsp@.

This commit is contained in:
matthieu
2019-03-19 21:19:54 +00:00
parent eb23d5beb3
commit e7e87a2ccb
28 changed files with 1146 additions and 316 deletions

View File

@@ -272,7 +272,7 @@ ProcRRSetScreenSize(ClientPtr client)
int source_height = mode->mode.height;
Rotation rotation = crtc->rotation;
if (rotation == RR_Rotate_90 || rotation == RR_Rotate_270) {
if (rotation & (RR_Rotate_90 | RR_Rotate_270)) {
source_width = mode->mode.height;
source_height = mode->mode.width;
}