mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-04 04:48:04 +02:00
EXA: Do still return FALSE if the driver PrepareCopy hook failed...
Thanks to Stuart Bennett for pointing out the problem on IRC.
This commit is contained in:
parent
68fd6604a1
commit
148175fb8b
1 changed files with 3 additions and 1 deletions
|
|
@ -1335,6 +1335,8 @@ exaFillRegionTiled (DrawablePtr pDrawable,
|
|||
}
|
||||
|
||||
(*pExaScr->info->DoneCopy) (pPixmap);
|
||||
|
||||
ret = TRUE;
|
||||
}
|
||||
|
||||
exaMarkSync(pDrawable->pScreen);
|
||||
|
|
@ -1343,7 +1345,7 @@ exaFillRegionTiled (DrawablePtr pDrawable,
|
|||
REGION_TRANSLATE(pScreen, pRegion, -xoff, -yoff);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue