summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2009-08-18 07:30:33 -0300
committerMartin-Éric Racine <q-funk@iki.fi>2009-08-18 14:11:49 +0300
commit255c0b985731350fdfd38987a95310e72f4e5381 (patch)
treed3e757d90b27cac7c3be1a507d7b438d77fec2d8
parentef3fbd7bd03fa4a9ff966a373ba8ddec94ea8ff5 (diff)
GX: use XAA by default.
EXA support is broken for GX so we disable it for now.
-rw-r--r--README2
-rw-r--r--src/gx_driver.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index f9f3764..8ae3ce7 100644
--- a/README
+++ b/README
@@ -90,7 +90,7 @@ The following options may be added to the section:
SWCursor: Enable software cursors (essentially disabling HW cursor support)
NoCompression: Disable video bandwidth compression
NoAccel: Disable hardware assisted acceleration
-AccelMethod: "EXA" (default) or "XAA"
+AccelMethod: "XAA" (default) or "EXA"
Rotate: Select a orientation to start with - LEFT, INVERT, CCW
NoPanel: Disable panel support
OSMImageBuffers: Set the number of image buffers (XAA only)
diff --git a/src/gx_driver.c b/src/gx_driver.c
index f526326..7ff5418 100644
--- a/src/gx_driver.c
+++ b/src/gx_driver.c
@@ -511,7 +511,7 @@ GXPreInit(ScrnInfoPtr pScrni, int flags)
pGeode->tryCompression = TRUE;
pGeode->NoAccel = FALSE;
- pGeode->useEXA = TRUE;
+ pGeode->useEXA = FALSE;
pGeode->Panel = (pGeode->Output & OUTPUT_PANEL) ? TRUE : FALSE;
@@ -582,7 +582,7 @@ GXPreInit(ScrnInfoPtr pScrni, int flags)
pGeode->useEXA = FALSE;
else if (xf86NameCmp(s, "EXA"))
xf86DrvMsg(pScrni->scrnIndex, X_ERROR,
- "Unknown accleration method %s. Defaulting to EXA.\n", s);
+ "Unknown accleration method %s. Defaulting to XAA.\n", s);
}
xf86DrvMsg(pScrni->scrnIndex, X_INFO,