зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1207420 - Improve GetBounds() to avoid recomputing every time. r=roc
This commit is contained in:
Родитель
9c5368f80d
Коммит
3ea3c8dece
|
@ -3589,20 +3589,28 @@ class nsDisplayTransform: public nsDisplayItem
|
||||||
public:
|
public:
|
||||||
StoreList(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
StoreList(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
||||||
nsDisplayList* aList) :
|
nsDisplayList* aList) :
|
||||||
nsDisplayWrapList(aBuilder, aFrame, aList) {}
|
nsDisplayWrapList(aBuilder, aFrame, aList),
|
||||||
|
mHasBounds(false) {}
|
||||||
StoreList(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
StoreList(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
||||||
nsDisplayItem* aItem) :
|
nsDisplayItem* aItem) :
|
||||||
nsDisplayWrapList(aBuilder, aFrame, aItem) {}
|
nsDisplayWrapList(aBuilder, aFrame, aItem),
|
||||||
|
mHasBounds(false) {}
|
||||||
virtual ~StoreList() {}
|
virtual ~StoreList() {}
|
||||||
|
|
||||||
virtual void UpdateBounds(nsDisplayListBuilder* aBuilder) override {}
|
virtual void UpdateBounds(nsDisplayListBuilder* aBuilder) override {}
|
||||||
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder,
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder,
|
||||||
bool* aSnap) override {
|
bool* aSnap) override {
|
||||||
// The bounds should not be computed until now, because we don't
|
if (!mHasBounds) {
|
||||||
// get accmulated transform before.
|
// The bounds should not be computed until now, because we don't
|
||||||
nsDisplayWrapList::UpdateBounds(aBuilder);
|
// get accmulated transform before.
|
||||||
|
nsDisplayWrapList::UpdateBounds(aBuilder);
|
||||||
|
mHasBounds = true;
|
||||||
|
}
|
||||||
return nsDisplayWrapList::GetBounds(aBuilder, aSnap);
|
return nsDisplayWrapList::GetBounds(aBuilder, aSnap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool mHasBounds;
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
Загрузка…
Ссылка в новой задаче