diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2006-07-02 17:03:23 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-07-02 17:03:23 +0200 |
commit | 11bedb7c845fc6074383890d5525315aebe05f2c (patch) | |
tree | 0bf3e087520178a5d7d4bfedb0876e58bfb8ad13 | |
parent | 4a0c22e32901a510c7aad070be25c31519c284e3 (diff) |
Bug #6939: Disable RENDER acceleration by default on RN50.
Based on patch from Weixing Zhang, but still allows enabling it with Option
"RenderAccel".
-rw-r--r-- | src/radeon_driver.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 149cb2e9..a3aae4b9 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -3025,8 +3025,9 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn) "Option ShowCache enabled\n"); #ifdef RENDER - info->RenderAccel = xf86ReturnOptValBool (info->Options, - OPTION_RENDER_ACCEL, TRUE); + info->RenderAccel = xf86ReturnOptValBool(info->Options, OPTION_RENDER_ACCEL, + info->Chipset != PCI_CHIP_RN50_515E && + info->Chipset != PCI_CHIP_RN50_5969); #endif return TRUE; |