Turn off overlay video on BW until we have stable PCI IDs so we can know whether

the hardware supports overlay.
This commit is contained in:
Eric Anholt 2006-05-17 13:42:51 -07:00
parent b0ac5303f3
commit bc51d6525a
1 changed files with 1 additions and 1 deletions

View File

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