mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-03 12:28:04 +02:00
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
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue