diff options
author | Eric Anholt <eric@anholt.net> | 2007-02-26 17:12:44 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-02-26 17:12:44 -0800 |
commit | 6ed28c5aa34ff1d8b99a8d4721ddac7b9cac41ed (patch) | |
tree | 5514aaa4ff5118b62a1150711d5f445fbdec6176 /src/i830_driver.c | |
parent | 36bfeb890aeb17a8ee058790dd69b4e9aba644a1 (diff) |
Fix XV issues on 965 after the allocation rework
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index 1dfd7a83..135e6fad 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -2482,7 +2482,7 @@ I830ScreenInit(int scrnIndex, ScreenPtr pScreen, int argc, char **argv) "needs 2D acceleration.\n"); pI830->XvEnabled = FALSE; } - if (pI830->overlay_regs == NULL) { + if (!IS_I9XX(pI830) && pI830->overlay_regs == NULL) { xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Disabling Xv because the overlay register buffer " "allocation failed.\n"); |