summarylogtreecommitdiffstats
path: root/0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch
diff options
context:
space:
mode:
Diffstat (limited to '0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch')
-rw-r--r--0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch b/0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch
new file mode 100644
index 000000000000..92bd545311e5
--- /dev/null
+++ b/0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch
@@ -0,0 +1,30 @@
+From 8382e6bb0c76a8029493eae3f2d7a3dbfd0cfc12 Mon Sep 17 00:00:00 2001
+From: Adam Jackson <ajax@redhat.com>
+Date: Mon, 5 Mar 2018 10:28:15 -0500
+Subject: [PATCH] gx: Fix RANDR initialization for xserver 1.20
+
+xf86DisableRandR() doesn't exist anymore, and we don't need it anyway,
+the core code will notice that we set up RANDR ourselves.
+
+Signed-off-by: Adam Jackson <ajax@redhat.com>
+---
+ src/gx_driver.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/gx_driver.c b/src/gx_driver.c
+index ab57df1..4de336e 100644
+--- a/src/gx_driver.c
++++ b/src/gx_driver.c
+@@ -1426,7 +1426,9 @@ GXScreenInit(SCREEN_INIT_ARGS_DECL)
+
+ /* Set up RandR */
+
++#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 24
+ xf86DisableRandR(); /* We provide our own RandR goodness */
++#endif
+
+ /* Try to set up the shadow FB for rotation */
+
+--
+2.11.0
+