summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Dänzer <michel@tungstengraphics.com>2006-07-02 17:03:23 +0200
committerMichel Dänzer <michel@tungstengraphics.com>2006-07-02 17:03:23 +0200
commit11bedb7c845fc6074383890d5525315aebe05f2c (patch)
tree0bf3e087520178a5d7d4bfedb0876e58bfb8ad13
parent4a0c22e32901a510c7aad070be25c31519c284e3 (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.c5
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;