diff options
author | Alex Deucher <alex@botch2.(none)> | 2008-02-29 13:10:13 -0500 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2008-02-29 13:10:13 -0500 |
commit | fe87bdee815372b4b4d7d4c705e34681625b90f2 (patch) | |
tree | 42cb275a703e511986a35d4ce762d2007bdbec11 /src/radeon_driver.c | |
parent | fb3678c7f511d539a51cd090cb8b5041d7d2ba26 (diff) |
AVIVO: disable pageflipping on avivo chips until we have proper drm support
Diffstat (limited to 'src/radeon_driver.c')
-rw-r--r-- | src/radeon_driver.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index c38e39bb..1b3e800c 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -2163,7 +2163,14 @@ static Bool RADEONPreInitDRI(ScrnInfoPtr pScrn) } else { from = xf86GetOptValBool(info->Options, OPTION_PAGE_FLIP, &info->allowPageFlip) ? X_CONFIG : X_DEFAULT; - reason = ""; + + if (IS_AVIVO_VARIANT) { + info->allowPageFlip = 0; + reason = " on r5xx and newer chips.\n"; + } else { + reason = ""; + } + } #else from = X_DEFAULT; |