exa: avoid doing prepare/done without intervening copies in exaFillRegionTiled

This does a precursor check to make sure the copies are required before
entering the prepare/done code.
This commit is contained in:
Dave Airlie 2008-11-17 10:28:48 +10:00
parent 8f8a9c19ad
commit 08cd361234

View File

@ -1233,8 +1233,24 @@ exaFillRegionTiled (DrawablePtr pDrawable,
*/ */
if (alu != GXcopy) if (alu != GXcopy)
ret = TRUE; ret = TRUE;
else if ((*pExaScr->info->PrepareCopy) (pPixmap, pPixmap, 1, 1, alu, else {
planemask)) { Bool more_copy = FALSE;
for (i = 0; i < nbox; i++) {
int dstX = pBox[i].x1 + tileWidth;
int dstY = pBox[i].y1 + tileHeight;
if ((dstX < pBox[i].x2) || (dstY < pBox[i].y2)) {
more_copy = TRUE;
break;
}
}
if (more_copy == FALSE)
ret = TRUE;
if (more_copy && (*pExaScr->info->PrepareCopy) (pPixmap, pPixmap,
1, 1, alu, planemask)) {
for (i = 0; i < nbox; i++) for (i = 0; i < nbox; i++)
{ {
int dstX = pBox[i].x1 + tileWidth; int dstX = pBox[i].x1 + tileWidth;
@ -1264,6 +1280,7 @@ exaFillRegionTiled (DrawablePtr pDrawable,
ret = TRUE; ret = TRUE;
} }
}
exaMarkSync(pDrawable->pScreen); exaMarkSync(pDrawable->pScreen);