Mailinglist Archive: radeonhd (427 mails)

< Previous Next >
[radeonhd] [PATCH] EXA as default AccelMethod on r5xx
  • From: Yang Zhao <yang@xxxxxxxxxx>
  • Date: Wed, 6 May 2009 14:24:48 -0700
  • Message-id: <40a7b1aa0905061424r1fe7f80am79aca71093b324cb@xxxxxxxxxxxxxx>
Now that DRI is on by default on r5xx, we might as well set EXA as
default instead of XAA.

Thoughts?

--
Yang Zhao
http://yangman.ca
From 10c0f883c636fe43daaa13ea9d3641802df30446 Mon Sep 17 00:00:00 2001
From: Yang Zhao <yang@xxxxxxxxxx>
Date: Wed, 6 May 2009 14:22:13 -0700
Subject: [PATCH] Make EXA the default AccelMethod on r5xx


Signed-off-by: Yang Zhao <yang@xxxxxxxxxx>
---
src/rhd_driver.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/rhd_driver.c b/src/rhd_driver.c
index 612fe4e..0b6c2a3 100644
--- a/src/rhd_driver.c
+++ b/src/rhd_driver.c
@@ -2754,7 +2754,11 @@ rhdAccelOptionsHandle(ScrnInfoPtr pScrn)

if (rhdPtr->AccelMethod == RHD_ACCEL_DEFAULT) {
if (rhdPtr->ChipSet < RHD_R600)
+#ifdef USE_EXA
+ rhdPtr->AccelMethod = RHD_ACCEL_EXA;
+#else
rhdPtr->AccelMethod = RHD_ACCEL_XAA;
+#endif /* USE_EXA */
else
rhdPtr->AccelMethod = RHD_ACCEL_SHADOWFB;
}
--
1.6.0.6

< Previous Next >
Follow Ups