xserver: Branch 'master'

Adam Jackson ajax at kemper.freedesktop.org
Mon Jan 2 18:50:39 UTC 2017


 randr/rrxinerama.c |    7 +++++++
 1 file changed, 7 insertions(+)

New commits:
commit c96c860b6420adf0d004707a323af30491a1d7d3
Author: Michal Srb <msrb at suse.com>
Date:   Mon Dec 12 17:45:22 2016 +0200

    xinerama: Swap the response in RRXineramaWriteMonitor
    
    Reviewed-by: Adam Jackson <ajax at redhat.com>

diff --git a/randr/rrxinerama.c b/randr/rrxinerama.c
index b6e9586..8f499df 100644
--- a/randr/rrxinerama.c
+++ b/randr/rrxinerama.c
@@ -260,6 +260,13 @@ RRXineramaWriteMonitor(ClientPtr client, RRMonitorPtr monitor)
     scratch.width = monitor->geometry.box.x2 - monitor->geometry.box.x1;
     scratch.height = monitor->geometry.box.y2 - monitor->geometry.box.y1;
 
+    if (client->swapped) {
+        swaps(&scratch.x_org);
+        swaps(&scratch.y_org);
+        swaps(&scratch.width);
+        swaps(&scratch.height);
+    }
+
     WriteToClient(client, sz_XineramaScreenInfo, &scratch);
 }
 


More information about the xorg-commit mailing list