View | Details | Raw Unified | Return to bug 384141
Collapse All | Expand All

(-)../xf86-video-intel-2.3.0.orig//man/intel.man (-1 / +1 lines)
Lines 170-176 Default for i830 and above: Disabled. Link Here
170
Choose acceleration architecture, either "XAA" or "EXA".  XAA is the old
170
Choose acceleration architecture, either "XAA" or "EXA".  XAA is the old
171
XFree86 based acceleration architecture.  EXA is a newer and simpler
171
XFree86 based acceleration architecture.  EXA is a newer and simpler
172
acceleration architecture designed to better accelerate the X Render extension.
172
acceleration architecture designed to better accelerate the X Render extension.
173
Default: "EXA".
173
Default: "XAA".
174
.TP
174
.TP
175
.BI "Option \*qModeDebug\*q \*q" boolean \*q
175
.BI "Option \*qModeDebug\*q \*q" boolean \*q
176
Enable printing of additional debugging information about modesetting to
176
Enable printing of additional debugging information about modesetting to
(-)../xf86-video-intel-2.3.0.orig//src/i830_driver.c (-4 lines)
Lines 1492-1502 I830PreInit(ScrnInfoPtr pScrn, int flags Link Here
1492
    * for example. :)
1492
    * for example. :)
1493
    */
1493
    */
1494
   if (!pI830->noAccel) {
1494
   if (!pI830->noAccel) {
1495
#ifdef I830_USE_EXA
1496
       pI830->useEXA = TRUE;
1497
#else
1498
       pI830->useEXA = FALSE;
1495
       pI830->useEXA = FALSE;
1499
#endif
1500
#if defined(I830_USE_XAA) && defined(I830_USE_EXA)
1496
#if defined(I830_USE_XAA) && defined(I830_USE_EXA)
1501
       from = X_DEFAULT;
1497
       from = X_DEFAULT;
1502
       if ((s = (char *)xf86GetOptValString(pI830->Options,
1498
       if ((s = (char *)xf86GetOptValString(pI830->Options,

Return to bug 384141