diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-03-04 19:04:34 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-03-04 19:04:34 -0500 |
commit | 3b0fc22ad9e5c0f120a74c4f3d8e48c270f0ff29 (patch) | |
tree | 88b8955d582697192344f8b09e5ec38b3bcfb64d /src/radeon_driver.c | |
parent | 52f06ace04ad8141effc45fb6a0107a05bb46a73 (diff) |
R6xx/R7xx: wire up DMAForXv option like older asics
Select between SW and HW-assisted uploads
Diffstat (limited to 'src/radeon_driver.c')
-rw-r--r-- | src/radeon_driver.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 8a28f3f2..0842164c 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -2345,10 +2345,7 @@ static Bool RADEONPreInitDRI(ScrnInfoPtr pScrn) xf86DrvMsg(pScrn->scrnIndex, from, "Page Flipping %sabled%s\n", info->dri->allowPageFlip ? "en" : "dis", reason); - if (info->ChipFamily >= CHIP_FAMILY_R600) - info->DMAForXv = FALSE; - else - info->DMAForXv = TRUE; + info->DMAForXv = TRUE; from = xf86GetOptValBool(info->Options, OPTION_XV_DMA, &info->DMAForXv) ? X_CONFIG : X_INFO; xf86DrvMsg(pScrn->scrnIndex, from, |