EXA: Punt on fallback case not handled correctly in exaFillRegionTiled.

Fixes http://bugs.freedesktop.org/show_bug.cgi?id=12520 .
This commit is contained in:
Michel Dänzer 2007-09-27 13:08:40 +02:00
parent 1d938a80fd
commit c7d6d1f589

View File

@ -1288,7 +1288,8 @@ exaFillRegionTiled (DrawablePtr pDrawable,
}
fallback:
if (alu != GXcopy || !EXA_PM_IS_SOLID(pDrawable, planemask)) {
if (alu != GXcopy || pPatOrg->x != 0 || pPatOrg->y != 0 ||
!EXA_PM_IS_SOLID(pDrawable, planemask)) {
REGION_TRANSLATE(pScreen, pRegion, -xoff, -yoff);
return FALSE;
}