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.
This commit is contained in:
Jesse Barnes 2007-11-14 16:24:56 -08:00
parent b2726899bc
commit 53e3693ef1
1 changed files with 1 additions and 1 deletions

View File

@ -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;