summaryrefslogtreecommitdiff
authorJesse Barnes <jbarnes@hobbes.virtuousgeek.org>2007-11-15 00:24:56 (GMT)
committer Jesse Barnes <jbarnes@hobbes.virtuousgeek.org>2007-11-15 00:24:56 (GMT)
commit53e3693ef13f31f3fc33bcff7286ab2b03b2d430 (patch)
tree32f4f0c0f1f7d1fbd57d75e8f150623f40b0d372
parentb2726899bc6ebd108aa4a5dd66fe1d881bb778b3 (diff)
downloadxf86-video-intel-53e3693ef13f31f3fc33bcff7286ab2b03b2d430.zip
xf86-video-intel-53e3693ef13f31f3fc33bcff7286ab2b03b2d430.tar.gz
xf86-video-intel-53e3693ef13f31f3fc33bcff7286ab2b03b2d430.tar.bz2
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.
-rw-r--r--src/i830_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c
index abe6932..5d56104 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;