diff options
author | Dave Airlie <airlied@linux.ie> | 2008-02-25 07:10:48 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2008-02-25 07:10:48 +1000 |
commit | 153ad6fcf704cbf9f811d9986cd4baf04e82c9d2 (patch) | |
tree | 2a428be39c940925c77788ac8d78c62de76c0097 /src | |
parent | 85e470e64f629de72e361c77770e2e29998d1bf4 (diff) |
fixup check for EXA composite pointed out by Alan Swanson
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_exa_funcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_exa_funcs.c b/src/radeon_exa_funcs.c index 6e22bb57..10221c02 100644 --- a/src/radeon_exa_funcs.c +++ b/src/radeon_exa_funcs.c @@ -537,7 +537,7 @@ Bool FUNC_NAME(RADEONDrawInit)(ScreenPtr pScreen) (info->ChipFamily == CHIP_FAMILY_RS400)) xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration " "unsupported on XPRESS, R500 and newer cards.\n"); - else if (IS_R300_VARIANT || info->ChipFamily <= CHIP_FAMILY_RS690) { + else if (IS_R300_VARIANT || (IS_AVIVO_VARIANT && info->ChipFamily <= CHIP_FAMILY_RS690)) { xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Render acceleration " "enabled for R300 type cards.\n"); info->exa->CheckComposite = R300CheckComposite; |