diff options
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index 9bc74b54..20781aa0 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -1139,14 +1139,13 @@ I830PreInit(ScrnInfoPtr pScrn, int flags) /* Allocate an xf86CrtcConfig */ xf86CrtcConfigInit (pScrn); xf86_config = XF86_CRTC_CONFIG_PTR(pScrn); - - if (IS_I965G(pI830)) - { - max_width = 16384; - max_height = 4096; - } - else - { + + /* See i830_exa.c comments for why we limit the framebuffer size like this. + */ + if (IS_I965G(pI830)) { + max_width = 8192; + max_height = 8192; + } else { max_width = 2048; max_height = 2048; } |