From bc51d6525a12c748d0a293b7e560f6dcea33eecb Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 17 May 2006 13:42:51 -0700 Subject: [PATCH] Turn off overlay video on BW until we have stable PCI IDs so we can know whether the hardware supports overlay. --- src/i830_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i830_video.c b/src/i830_video.c index dc0f8e17..1a133b9a 100644 --- a/src/i830_video.c +++ b/src/i830_video.c @@ -473,7 +473,7 @@ I830InitVideo(ScreenPtr pScreen) xvContrast = MAKE_ATOM("XV_CONTRAST"); /* Set up overlay video if we can do it at this depth. */ - if (pScrn->bitsPerPixel != 8) { + if (!IS_BROADWATER(pI830) && pScrn->bitsPerPixel != 8) { overlayAdaptor = I830SetupImageVideoOverlay(pScreen); if (overlayAdaptor != NULL) { adaptors[num_adaptors++] = overlayAdaptor;