Merge "Fixed to call computeVisibleRegions() when transparent value changed"

This commit is contained in:
Conley Owens 2011-04-29 09:59:30 -07:00 committed by Android Code Review
commit 56b79aa816

View File

@ -93,6 +93,9 @@ bool LayerBuffer::needsBlending() const {
}
void LayerBuffer::setNeedsBlending(bool blending) {
if (mNeedsBlending != blending) {
mFlinger->invalidateLayerVisibility(this);
}
mNeedsBlending = blending;
}