diff options
Diffstat (limited to 'src/uxa/intel_video.c')
-rw-r--r-- | src/uxa/intel_video.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/uxa/intel_video.c b/src/uxa/intel_video.c index d1b98d47..01919e37 100644 --- a/src/uxa/intel_video.c +++ b/src/uxa/intel_video.c @@ -354,7 +354,8 @@ void I830InitVideo(ScreenPtr screen) /* Set up textured video if we can do it at this depth and we are on * supported hardware. */ - if (scrn->bitsPerPixel >= 16 && + if (!intel->force_fallback && + scrn->bitsPerPixel >= 16 && INTEL_INFO(intel)->gen >= 030) { texturedAdaptor = I830SetupImageVideoTextured(screen); if (texturedAdaptor != NULL) { |