diff options
-rw-r--r-- | src/radeon_video.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/radeon_video.c b/src/radeon_video.c index ba7cf74c..487f064b 100644 --- a/src/radeon_video.c +++ b/src/radeon_video.c @@ -285,12 +285,14 @@ void RADEONInitVideo(ScreenPtr pScreen) RADEONInitOffscreenImages(pScreen); } - texturedAdaptor = RADEONSetupImageTexturedVideo(pScreen); - if (texturedAdaptor != NULL) { - adaptors[num_adaptors++] = texturedAdaptor; - xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Set up textured video\n"); - } else - xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "Failed to set up textured video\n"); + if (info->ChipFamily != CHIP_FAMILY_RS400) { + texturedAdaptor = RADEONSetupImageTexturedVideo(pScreen); + if (texturedAdaptor != NULL) { + adaptors[num_adaptors++] = texturedAdaptor; + xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Set up textured video\n"); + } else + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "Failed to set up textured video\n"); + } if(num_adaptors) xf86XVScreenInit(pScreen, adaptors, num_adaptors); |