diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-03-17 20:40:15 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-03-18 08:59:45 +0100 |
commit | 64c7dee8643c3a5a4fa6619c494e97ba435ade3f (patch) | |
tree | 4027a3968f1ef33fd2a39b15dc0b55256c332fcb /source/x/x11/patch/xf86-video-intel/0001-sna-Let-modestting-glamor-handle-gen9.patch | |
parent | 7016de3d122d1eccdf59100f7afc9e201f16c882 (diff) | |
download | current-64c7dee8643c3a5a4fa6619c494e97ba435ade3f.tar.gz |
Sun Mar 17 20:40:15 UTC 201920190317204015
Saint Patrick was a gentleman
Who through strategy and stealth
Drove all the snakes from Ireland
Here's toasting to his health -
But not too many toastings
Lest you lose yourself, and then,
Forget the good Saint Patrick
And see all those snakes again.
a/eudev-3.2.7-x86_64-3.txz: Rebuilt.
Added tqmx86_wdt to watchdog.conf. Thanks to Robby Workman.
d/vala-0.44.1-x86_64-1.txz: Upgraded.
kde/ktorrent-4.3.1-x86_64-4.txz: Rebuilt.
Embed a copy of the GeoIP database since the download link no longer works.
l/glibmm-2.58.1-x86_64-1.txz: Upgraded.
l/mozilla-nss-3.43-x86_64-1.txz: Upgraded.
x/imake-1.0.8-x86_64-1.txz: Upgraded.
x/libXdmcp-1.1.3-x86_64-1.txz: Upgraded.
x/libXext-1.3.4-x86_64-1.txz: Upgraded.
x/libXft-2.3.3-x86_64-1.txz: Upgraded.
x/libXmu-1.1.3-x86_64-1.txz: Upgraded.
x/libXrandr-1.5.2-x86_64-1.txz: Upgraded.
x/libXvMC-1.0.11-x86_64-1.txz: Upgraded.
x/libXxf86dga-1.1.5-x86_64-1.txz: Upgraded.
x/libxkbfile-1.1.0-x86_64-1.txz: Upgraded.
x/makedepend-1.0.6-x86_64-1.txz: Upgraded.
x/x11perf-1.6.1-x86_64-1.txz: Upgraded.
x/xf86-video-intel-20190301_6afed33b-x86_64-1.txz: Upgraded.
x/xf86-video-savage-20190128_8579718-x86_64-1.txz: Upgraded.
x/xf86-video-sis-20181217_22d3c79-x86_64-1.txz: Upgraded.
x/xtrans-1.4.0-noarch-1.txz: Upgraded.
Diffstat (limited to 'source/x/x11/patch/xf86-video-intel/0001-sna-Let-modestting-glamor-handle-gen9.patch')
-rw-r--r-- | source/x/x11/patch/xf86-video-intel/0001-sna-Let-modestting-glamor-handle-gen9.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/source/x/x11/patch/xf86-video-intel/0001-sna-Let-modestting-glamor-handle-gen9.patch b/source/x/x11/patch/xf86-video-intel/0001-sna-Let-modestting-glamor-handle-gen9.patch deleted file mode 100644 index 75d71952..00000000 --- a/source/x/x11/patch/xf86-video-intel/0001-sna-Let-modestting-glamor-handle-gen9.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 442ac0a20132f49fbfb37f05db9d90f04b13698d Mon Sep 17 00:00:00 2001 -From: Hans de Goede <hdegoede@redhat.com> -Date: Mon, 29 Feb 2016 14:43:35 +0100 -Subject: [RFC/PATCH xf86-video-intel] sna: Let modestting + glamor handle - gen9+ - -sna has no meaningfull accel for gen9+, this causes problems with i.e. -apps using XVideo since the sprite XVideo support does not work well -for many apps. - -Therefor it is better to just let the xserver fall back to modesetting + -glamor. This is implemented by returning FALSE from the probe methods, -just like how nouveau handles falling back to modesetting for newer cards. - -BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=1305369 -Signed-off-by: Hans de Goede <hdegoede@redhat.com> ---- - src/intel_module.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/src/intel_module.c b/src/intel_module.c -index 60835b9..5979cb9 100644 ---- a/src/intel_module.c -+++ b/src/intel_module.c -@@ -571,6 +571,13 @@ intel_scrn_create(DriverPtr driver, - return FALSE; - } - -+ /* -+ * We've no accel support for these, so let modesetting + glamor -+ * handle them. -+ */ -+ if ((unsigned)((struct intel_device_info *)match_data)->gen >= 0110) -+ return FALSE; -+ - scrn = xf86AllocateScreen(driver, flags); - if (scrn == NULL) - return FALSE; --- -2.7.2 - |