Bug 282750. Don't worry about over-complex opaque regions when we want to add a rect that will cover the entire region (and thus simplify it). r+sr=bzbarsky

This commit is contained in:
roc+%cs.cmu.edu 2005-10-06 17:47:59 +00:00
Родитель 6b9f62271f
Коммит 9ea7448b86
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -4002,8 +4002,10 @@ void nsViewManager::OptimizeDisplayList(const nsVoidArray* aDisplayList, const n
} else {
element->mBounds = tmpRgn.GetBounds();
PRBool tooComplex = aOpaqueRegion.GetNumRects() > MAX_OPAQUE_REGION_COMPLEXITY &&
!element->mBounds.Contains(aOpaqueRegion.GetBounds());
// See whether we should add this view's bounds to aOpaqueRegion
if (aOpaqueRegion.GetNumRects() <= MAX_OPAQUE_REGION_COMPLEXITY &&
if (!tooComplex &&
// a view is opaque if it is neither transparent nor transluscent
(!(element->mFlags & (VIEW_TRANSPARENT | VIEW_TRANSLUCENT))
// also, treat it as opaque if it's drawn onto a uniform background