From fe87bdee815372b4b4d7d4c705e34681625b90f2 Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Fri, 29 Feb 2008 13:10:13 -0500 Subject: AVIVO: disable pageflipping on avivo chips until we have proper drm support --- src/radeon_driver.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/radeon_driver.c') 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; -- cgit v1.2.3