From 53e3693ef13f31f3fc33bcff7286ab2b03b2d430 Mon Sep 17 00:00:00 2001 From: Jesse Barnes Date: Wed, 14 Nov 2007 16:24:56 -0800 Subject: [PATCH] Disable FBC by default on 965GM Several people have reported that they see frequent FBC related display corruption on 965GM, so disable it for now. Users wanting to enable it can use the driver option "Framebuffercompression" to override the default. --- src/i830_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i830_driver.c b/src/i830_driver.c index abe6932d..5d561043 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -2449,7 +2449,7 @@ I830ScreenInit(int scrnIndex, ScreenPtr pScreen, int argc, char **argv) } /* Enable FB compression if possible */ - if (i830_fb_compression_supported(pI830)) + if (i830_fb_compression_supported(pI830) && !IS_I965GM(pI830)) pI830->fb_compression = TRUE; else pI830->fb_compression = FALSE;