diff options
author | Alex Deucher <alex@samba.(none)> | 2008-01-16 18:09:49 -0500 |
---|---|---|
committer | Alex Deucher <alex@samba.(none)> | 2008-01-16 18:09:49 -0500 |
commit | 6bd510a211f25d52e74791e4a429cd2218ced541 (patch) | |
tree | 5091a9aab87a168c51a4c610335758afd773563c /src/radeon_exa_funcs.c | |
parent | 85bf3439fe2579aec48f5cd8d65a9d51b1ae8535 (diff) |
RADEON: add a message about render accel on newer cards
Diffstat (limited to 'src/radeon_exa_funcs.c')
-rw-r--r-- | src/radeon_exa_funcs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/radeon_exa_funcs.c b/src/radeon_exa_funcs.c index f62a020..d0c0065 100644 --- a/src/radeon_exa_funcs.c +++ b/src/radeon_exa_funcs.c @@ -533,7 +533,10 @@ Bool FUNC_NAME(RADEONDrawInit)(ScreenPtr pScreen) #ifdef RENDER if (info->RenderAccel) { - if (IS_R300_VARIANT && !info->IsIGP) { + if (info->ChipFamily >= CHIP_FAMILY_RV515) + xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration " + "unsupported on R500 and newer cards.\n"); + else if (IS_R300_VARIANT && !info->IsIGP) { xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration " "enabled for R300 type cards.\n"); info->exa->CheckComposite = R300CheckComposite; |