diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2014-03-06 13:12:32 -0800 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2014-03-13 15:04:59 +0000 |
commit | cbcc1b6190ab733c9ab11543af4a4eb1890225e4 (patch) | |
tree | 412f50a80e78e59e48fe7bc3d6a344380c216d4c /src/uxa/intel_video.c | |
parent | c1d7abadbb0009e9f2b9d8d3744d4ae5c13a1c8f (diff) |
uxa: Enable BLT acceleration on Broadwell.
This supports solid, copy, put_image, and get_image acceleration via the
BLT engine. RENDER acceleration (composite) and Xv would be piles of work,
which is not worth doing since SNA exists, and Glamor is coming.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
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 01919e37..73fb6112 100644 --- a/src/uxa/intel_video.c +++ b/src/uxa/intel_video.c @@ -356,7 +356,8 @@ void I830InitVideo(ScreenPtr screen) */ if (!intel->force_fallback && scrn->bitsPerPixel >= 16 && - INTEL_INFO(intel)->gen >= 030) { + INTEL_INFO(intel)->gen >= 030 && + INTEL_INFO(intel)->gen < 0100) { texturedAdaptor = I830SetupImageVideoTextured(screen); if (texturedAdaptor != NULL) { xf86DrvMsg(scrn->scrnIndex, X_INFO, |