mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-11 05:10:24 +01:00
EXA: avoid copy operations if no boxes in use
Simple fix for now, I'm sure damage shouldn't be calling us with nbox = 0.
This commit is contained in:
parent
03f7a66a1a
commit
8f8a9c19ad
1 changed files with 4 additions and 0 deletions
|
|
@ -401,6 +401,10 @@ exaCopyNtoN (DrawablePtr pSrcDrawable,
|
|||
RegionPtr srcregion = NULL, dstregion = NULL;
|
||||
xRectangle *rects;
|
||||
|
||||
/* avoid doing copy operations if no boxes */
|
||||
if (nbox == 0)
|
||||
return;
|
||||
|
||||
pSrcPixmap = exaGetDrawablePixmap (pSrcDrawable);
|
||||
pDstPixmap = exaGetDrawablePixmap (pDstDrawable);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue