diff options
author | Alex Deucher <alex@botch2.(none)> | 2008-01-18 09:50:38 -0500 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2008-01-18 09:50:38 -0500 |
commit | 24c7d134cd450f9e2cca85e4a2fc3253d250be04 (patch) | |
tree | c63538a7b99ec1368e9fb04379e6f435177a2257 | |
parent | eaf425436008092abe81208321a2b3b6698a5d79 (diff) |
RADEON: make sure EXA Composite is actually disabled on XPRESS chips.
-rw-r--r-- | src/radeon_exa_funcs.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/radeon_exa_funcs.c b/src/radeon_exa_funcs.c index d0c0065d..20b96a5d 100644 --- a/src/radeon_exa_funcs.c +++ b/src/radeon_exa_funcs.c @@ -533,10 +533,11 @@ Bool FUNC_NAME(RADEONDrawInit)(ScreenPtr pScreen) #ifdef RENDER if (info->RenderAccel) { - if (info->ChipFamily >= CHIP_FAMILY_RV515) + if ((info->ChipFamily >= CHIP_FAMILY_RV515) || + (info->ChipFamily == CHIP_FAMILY_RS400)) xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration " - "unsupported on R500 and newer cards.\n"); - else if (IS_R300_VARIANT && !info->IsIGP) { + "unsupported on XPRESS, R500 and newer cards.\n"); + else if (IS_R300_VARIANT) { xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration " "enabled for R300 type cards.\n"); info->exa->CheckComposite = R300CheckComposite; |