EXA: Use correct coordinate system for calculating Composite fallback region.
Fixes incorrectly skipped rendering of some Composite operations to windows. Signed-off-by: Michel Dänzer <daenzer@vmware.com> Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
0f4ef7123d
commit
bb7acfbcfb
|
@ -414,7 +414,9 @@ ExaCheckComposite (CARD8 op,
|
|||
PixmapPtr pDstPix;
|
||||
|
||||
if (!miComputeCompositeRegion (®ion, pSrc, pMask, pDst,
|
||||
xSrc, ySrc, xMask, yMask, xDst, yDst,
|
||||
xSrc, ySrc, xMask, yMask,
|
||||
xDst + pDst->pDrawable->x,
|
||||
yDst + pDst->pDrawable->y,
|
||||
width, height))
|
||||
goto skip;
|
||||
|
||||
|
|
Loading…
Reference in New Issue