summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2007-12-08 17:53:08 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2007-12-08 17:53:08 +0000
commitb2a11ca016eb0bd24b93f9858ecda2b10adb7b56 (patch)
treeb1f32187f456cf331fabfb5a7f48fdc2137e7d46 /driver
parentdf9dac4ae8cce5598da8f2bb3cf7a61d05dec3a6 (diff)
Default to XAA acceleration since EXA produces stack overflows for now.
Diffstat (limited to 'driver')
-rw-r--r--driver/xf86-video-intel/src/i830_driver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/driver/xf86-video-intel/src/i830_driver.c b/driver/xf86-video-intel/src/i830_driver.c
index 7818ee4ec..abe1d49d1 100644
--- a/driver/xf86-video-intel/src/i830_driver.c
+++ b/driver/xf86-video-intel/src/i830_driver.c
@@ -1429,17 +1429,17 @@ I830PreInit(ScrnInfoPtr pScrn, int flags)
* If either XAA or EXA (exclusive) is compiled in, default to it.
*
* If both are compiled in, and the user didn't specify noAccel, use the
- * config option AccelMethod to determine which to use, defaulting to EXA
+ * config option AccelMethod to determine which to use, defaulting to XAA
* if none is specified, or if the string was unrecognized.
*
* All this *could* go away if we removed XAA support from this driver,
* for example. :)
*/
if (!pI830->noAccel) {
-#ifdef I830_USE_EXA
- pI830->useEXA = TRUE;
-#else
+#ifdef I830_USE_XAA
pI830->useEXA = FALSE;
+#else
+ pI830->useEXA = TRUE;
#endif
#if defined(I830_USE_XAA) && defined(I830_USE_EXA)
int from = X_DEFAULT;