зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1554499 - Add missing CalculatePerFrameIndex implementations r=mattwoodrow
Depends on D37804 Differential Revision: https://phabricator.services.mozilla.com/D50185 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
86bd968ca8
Коммит
a131671571
|
@ -4417,6 +4417,21 @@ class nsDisplaySolidColor : public nsDisplaySolidColorBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If we have multiple SolidColor items in a single frame's
|
||||||
|
* display list, aIndex should be used as their unique
|
||||||
|
* identifier. Note this mapping remains stable even if the
|
||||||
|
* dirty rect changes.
|
||||||
|
*/
|
||||||
|
// Should have an identical argument signature to the above ctor
|
||||||
|
static uint16_t CalculatePerFrameIndex(nsDisplayListBuilder* aBuilder,
|
||||||
|
nsIFrame* aFrame,
|
||||||
|
const nsRect& aBounds, nscolor aColor,
|
||||||
|
uint16_t aIndex = 0,
|
||||||
|
bool aCanBeReused = true) {
|
||||||
|
return aIndex;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef NS_BUILD_REFCNT_LOGGING
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
||||||
~nsDisplaySolidColor() override { MOZ_COUNT_DTOR(nsDisplaySolidColor); }
|
~nsDisplaySolidColor() override { MOZ_COUNT_DTOR(nsDisplaySolidColor); }
|
||||||
#endif
|
#endif
|
||||||
|
@ -4449,13 +4464,6 @@ class nsDisplaySolidColor : public nsDisplaySolidColorBase {
|
||||||
void SetOverrideZIndex(int32_t aZIndex) {
|
void SetOverrideZIndex(int32_t aZIndex) {
|
||||||
mOverrideZIndex = mozilla::Some(aZIndex);
|
mOverrideZIndex = mozilla::Some(aZIndex);
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* If we have multiple SolidColor items in a single frame's
|
|
||||||
* display list, mIndex should be used as their unique
|
|
||||||
* identifier. Note this mapping remains stable even if the
|
|
||||||
* dirty rect changes.
|
|
||||||
*/
|
|
||||||
uint16_t CalculatePerFrameKey() const override { return mIndex; }
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
nsRect mBounds;
|
nsRect mBounds;
|
||||||
|
@ -5466,6 +5474,12 @@ class nsDisplayWrapList : public nsDisplayHitTestInfoItem {
|
||||||
mListPtr = &mList;
|
mListPtr = &mList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Should have an identical argument signature to the above ctor
|
||||||
|
static uint16_t CalculatePerFrameIndex(nsDisplayListBuilder* aBuilder,
|
||||||
|
nsIFrame* aFrame) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
nsDisplayWrapList() = delete;
|
nsDisplayWrapList() = delete;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6165,8 +6179,9 @@ class nsDisplayOwnLayer : public nsDisplayWrapList {
|
||||||
const ActiveScrolledRoot* aActiveScrolledRoot,
|
const ActiveScrolledRoot* aActiveScrolledRoot,
|
||||||
nsDisplayOwnLayerFlags aFlags = nsDisplayOwnLayerFlags::None,
|
nsDisplayOwnLayerFlags aFlags = nsDisplayOwnLayerFlags::None,
|
||||||
const ScrollbarData& aScrollbarData = ScrollbarData{},
|
const ScrollbarData& aScrollbarData = ScrollbarData{},
|
||||||
bool aForceActive = true, bool aClearClipChain = false) {
|
bool aForceActive = true, bool aClearClipChain = false,
|
||||||
return 0;
|
uint16_t aIndex = 0) {
|
||||||
|
return aIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
nsDisplayOwnLayer(nsDisplayListBuilder* aBuilder,
|
nsDisplayOwnLayer(nsDisplayListBuilder* aBuilder,
|
||||||
|
@ -6207,8 +6222,6 @@ class nsDisplayOwnLayer : public nsDisplayWrapList {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t CalculatePerFrameKey() const override { return mIndex; }
|
|
||||||
|
|
||||||
bool ShouldFlattenAway(nsDisplayListBuilder* aBuilder) override {
|
bool ShouldFlattenAway(nsDisplayListBuilder* aBuilder) override {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -6944,6 +6957,12 @@ class nsDisplayBackdropFilters : public nsDisplayWrapList {
|
||||||
MOZ_COUNT_CTOR(nsDisplayBackdropFilters);
|
MOZ_COUNT_CTOR(nsDisplayBackdropFilters);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static uint16_t CalculatePerFrameIndex(nsDisplayListBuilder* aBuilder,
|
||||||
|
nsIFrame* aFrame, nsDisplayList* aList,
|
||||||
|
const nsRect& aBackdropRect) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef NS_BUILD_REFCNT_LOGGING
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
||||||
~nsDisplayBackdropFilters() override {
|
~nsDisplayBackdropFilters() override {
|
||||||
MOZ_COUNT_DTOR(nsDisplayBackdropFilters);
|
MOZ_COUNT_DTOR(nsDisplayBackdropFilters);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче