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:
parent
1d938a80fd
commit
c7d6d1f589
|
@ -1288,7 +1288,8 @@ exaFillRegionTiled (DrawablePtr pDrawable,
|
||||||
}
|
}
|
||||||
|
|
||||||
fallback:
|
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);
|
REGION_TRANSLATE(pScreen, pRegion, -xoff, -yoff);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue