[PATCH xf86-video-ati 1/4] glamor: Allow depth 30 with Xorg >= 1.19.99.1
Michel Dänzer
michel at daenzer.net
Wed Feb 14 17:49:27 UTC 2018
From: Michel Dänzer <michel.daenzer at amd.com>
Corresponding to amdgpu commit 6aee5770fb913713bb1b9a1af8f0d0892a66f21a.
Signed-off-by: Michel Dänzer <michel.daenzer at amd.com>
---
man/radeon.man | 2 +-
src/radeon_kms.c | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/man/radeon.man b/man/radeon.man
index 889355bbb..dcebf5375 100644
--- a/man/radeon.man
+++ b/man/radeon.man
@@ -19,7 +19,7 @@ following features:
.TP 2
\(bu
Full support for 8-, 15-, 16- and 24-bit pixel depths, and for 30-bit depth on Linux 3.16
-and later with EXA acceleration;
+and later;
.TP
\(bu
RandR 1.2 and RandR 1.3 support;
diff --git a/src/radeon_kms.c b/src/radeon_kms.c
index bac98cb6e..25b889a67 100644
--- a/src/radeon_kms.c
+++ b/src/radeon_kms.c
@@ -1767,7 +1767,8 @@ Bool RADEONPreInit_KMS(ScrnInfoPtr pScrn, int flags)
if (!RADEONPreInitAccel_KMS(pScrn)) goto fail;
/* Depth 30 not yet supported under glamor. */
- if (pScrn->depth == 30 && info->use_glamor) {
+ if (pScrn->depth == 30 && info->use_glamor &&
+ xorgGetVersion() < XORG_VERSION_NUMERIC(1,19,99,1,0)) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"Given depth (%d) is not supported under GLAMOR accel. Select EXA.\n",
pScrn->depth);
--
2.16.1
More information about the amd-gfx
mailing list