diff options
author | Eric Anholt <eric@anholt.net> | 2010-01-15 12:53:47 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-01-17 12:36:13 -0800 |
commit | 93cd943d41c646c794b8cb5a960d8f0805e15395 (patch) | |
tree | 3a996c06ff41550bdf4be97d5f2c3f8397b9bbfd /src/i810_video.c | |
parent | 6e61de896b42cffe1af6b0384cb69265d3d121a1 (diff) |
intel: Use the compositing-aware colorkey filler instead of homebrew fail.
Of course, it's still fail since you can't correctly composite
colorkey overlay, but at least this doesn't spam colorkey to the root
window.
Tested-by: Daniel Vetter <daniel@ffwll.ch>
Diffstat (limited to 'src/i810_video.c')
-rw-r--r-- | src/i810_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i810_video.c b/src/i810_video.c index c82fcc92..ee1a2326 100644 --- a/src/i810_video.c +++ b/src/i810_video.c @@ -1085,7 +1085,7 @@ I810PutImage( if(!REGION_EQUAL(pScrn->pScreen, &pPriv->clip, clipBoxes)) { REGION_COPY(pScrn->pScreen, &pPriv->clip, clipBoxes); /* draw these */ - xf86XVFillKeyHelper(pScrn->pScreen, pPriv->colorKey, clipBoxes); + xf86XVFillKeyHelperDrawable(pDraw, pPriv->colorKey, clipBoxes); } I810DisplayVideo(pScrn, id, width, height, dstPitch, |