2018-05-08 16:08:39 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "mozilla/layers/ClipManager.h"
|
|
|
|
|
|
|
|
#include "DisplayItemClipChain.h"
|
|
|
|
#include "FrameMetrics.h"
|
|
|
|
#include "LayersLogging.h"
|
|
|
|
#include "mozilla/layers/StackingContextHelper.h"
|
|
|
|
#include "mozilla/layers/WebRenderLayerManager.h"
|
|
|
|
#include "mozilla/webrender/WebRenderAPI.h"
|
|
|
|
#include "nsDisplayList.h"
|
2018-09-14 17:42:23 +03:00
|
|
|
#include "nsStyleStructInlines.h"
|
2018-05-08 16:08:39 +03:00
|
|
|
#include "UnitTransforms.h"
|
|
|
|
|
|
|
|
#define CLIP_LOG(...)
|
|
|
|
//#define CLIP_LOG(...) printf_stderr("CLIP: " __VA_ARGS__)
|
|
|
|
//#define CLIP_LOG(...) if (XRE_IsContentProcess()) printf_stderr("CLIP: " __VA_ARGS__)
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
ClipManager::ClipManager()
|
|
|
|
: mManager(nullptr)
|
|
|
|
, mBuilder(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::BeginBuild(WebRenderLayerManager* aManager,
|
|
|
|
wr::DisplayListBuilder& aBuilder)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mManager);
|
|
|
|
mManager = aManager;
|
|
|
|
MOZ_ASSERT(!mBuilder);
|
|
|
|
mBuilder = &aBuilder;
|
|
|
|
MOZ_ASSERT(mCacheStack.empty());
|
|
|
|
mCacheStack.emplace();
|
|
|
|
MOZ_ASSERT(mASROverride.empty());
|
|
|
|
MOZ_ASSERT(mItemClipStack.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::EndBuild()
|
|
|
|
{
|
|
|
|
mBuilder = nullptr;
|
|
|
|
mManager = nullptr;
|
|
|
|
mCacheStack.pop();
|
|
|
|
MOZ_ASSERT(mCacheStack.empty());
|
|
|
|
MOZ_ASSERT(mASROverride.empty());
|
|
|
|
MOZ_ASSERT(mItemClipStack.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::BeginList(const StackingContextHelper& aStackingContext)
|
|
|
|
{
|
|
|
|
if (aStackingContext.AffectsClipPositioning()) {
|
|
|
|
PushOverrideForASR(
|
|
|
|
mItemClipStack.empty() ? nullptr : mItemClipStack.top().mASR,
|
2018-05-08 16:16:29 +03:00
|
|
|
aStackingContext.ReferenceFrameId());
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
|
|
|
|
2018-09-14 17:42:23 +03:00
|
|
|
ItemClips clips(nullptr, nullptr, false);
|
2018-05-08 16:08:39 +03:00
|
|
|
if (!mItemClipStack.empty()) {
|
|
|
|
clips.CopyOutputsFrom(mItemClipStack.top());
|
|
|
|
}
|
|
|
|
mItemClipStack.push(clips);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::EndList(const StackingContextHelper& aStackingContext)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mItemClipStack.empty());
|
|
|
|
mItemClipStack.top().Unapply(mBuilder);
|
|
|
|
mItemClipStack.pop();
|
|
|
|
|
|
|
|
if (aStackingContext.AffectsClipPositioning()) {
|
|
|
|
PopOverrideForASR(
|
|
|
|
mItemClipStack.empty() ? nullptr : mItemClipStack.top().mASR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::PushOverrideForASR(const ActiveScrolledRoot* aASR,
|
|
|
|
const Maybe<wr::WrClipId>& aClipId)
|
|
|
|
{
|
|
|
|
layers::FrameMetrics::ViewID viewId = aASR
|
|
|
|
? aASR->GetViewId() : layers::FrameMetrics::NULL_SCROLL_ID;
|
|
|
|
Maybe<wr::WrClipId> scrollId = mBuilder->GetScrollIdForDefinedScrollLayer(viewId);
|
|
|
|
MOZ_ASSERT(scrollId.isSome());
|
|
|
|
|
2018-06-20 23:30:13 +03:00
|
|
|
CLIP_LOG("Pushing override %zu -> %s\n", scrollId->id,
|
2018-05-08 16:08:39 +03:00
|
|
|
aClipId ? Stringify(aClipId->id).c_str() : "(none)");
|
|
|
|
auto it = mASROverride.insert({ *scrollId, std::stack<Maybe<wr::WrClipId>>() });
|
|
|
|
it.first->second.push(aClipId);
|
|
|
|
|
|
|
|
// Start a new cache
|
|
|
|
mCacheStack.emplace();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::PopOverrideForASR(const ActiveScrolledRoot* aASR)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mCacheStack.empty());
|
|
|
|
mCacheStack.pop();
|
|
|
|
|
|
|
|
layers::FrameMetrics::ViewID viewId = aASR
|
|
|
|
? aASR->GetViewId() : layers::FrameMetrics::NULL_SCROLL_ID;
|
|
|
|
Maybe<wr::WrClipId> scrollId = mBuilder->GetScrollIdForDefinedScrollLayer(viewId);
|
|
|
|
MOZ_ASSERT(scrollId.isSome());
|
|
|
|
|
|
|
|
auto it = mASROverride.find(*scrollId);
|
|
|
|
MOZ_ASSERT(it != mASROverride.end());
|
|
|
|
MOZ_ASSERT(!(it->second.empty()));
|
2018-06-20 23:30:13 +03:00
|
|
|
CLIP_LOG("Popping override %zu -> %s\n", scrollId->id,
|
2018-05-08 16:08:39 +03:00
|
|
|
it->second.top() ? Stringify(it->second.top()->id).c_str() : "(none)");
|
|
|
|
it->second.pop();
|
|
|
|
if (it->second.empty()) {
|
|
|
|
mASROverride.erase(it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Maybe<wr::WrClipId>
|
|
|
|
ClipManager::ClipIdAfterOverride(const Maybe<wr::WrClipId>& aClipId)
|
|
|
|
{
|
|
|
|
if (!aClipId) {
|
|
|
|
return Nothing();
|
|
|
|
}
|
|
|
|
auto it = mASROverride.find(*aClipId);
|
|
|
|
if (it == mASROverride.end()) {
|
|
|
|
return aClipId;
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(!it->second.empty());
|
2018-06-20 23:30:13 +03:00
|
|
|
CLIP_LOG("Overriding %zu with %s\n", aClipId->id,
|
2018-05-08 16:08:39 +03:00
|
|
|
it->second.top() ? Stringify(it->second.top()->id).c_str() : "(none)");
|
|
|
|
return it->second.top();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::BeginItem(nsDisplayItem* aItem,
|
|
|
|
const StackingContextHelper& aStackingContext)
|
|
|
|
{
|
|
|
|
CLIP_LOG("processing item %p\n", aItem);
|
|
|
|
|
|
|
|
const DisplayItemClipChain* clip = aItem->GetClipChain();
|
|
|
|
const ActiveScrolledRoot* asr = aItem->GetActiveScrolledRoot();
|
2018-09-14 17:42:23 +03:00
|
|
|
DisplayItemType type = aItem->GetType();
|
|
|
|
if (type == DisplayItemType::TYPE_STICKY_POSITION) {
|
2018-05-18 22:19:47 +03:00
|
|
|
// For sticky position items, the ASR is computed differently depending
|
|
|
|
// on whether the item has a fixed descendant or not. But for WebRender
|
|
|
|
// purposes we always want to use the ASR that would have been used if it
|
|
|
|
// didn't have fixed descendants, which is stored as the "container ASR" on
|
|
|
|
// the sticky item.
|
|
|
|
asr = static_cast<nsDisplayStickyPosition*>(aItem)->GetContainerASR();
|
|
|
|
}
|
2018-05-08 16:08:39 +03:00
|
|
|
|
2018-09-14 17:42:23 +03:00
|
|
|
// In most cases we can combine the leaf of the clip chain with the clip rect
|
|
|
|
// of the display item. This reduces the number of clip items, which avoids
|
|
|
|
// some overhead further down the pipeline.
|
|
|
|
bool separateLeaf = false;
|
|
|
|
if (clip && clip->mASR == asr && clip->mClip.GetRoundedRectCount() == 0) {
|
2018-10-06 23:26:23 +03:00
|
|
|
if (type == DisplayItemType::TYPE_TEXT) {
|
|
|
|
// Text with shadows interprets the text display item clip rect and
|
|
|
|
// clips from the clip chain differently.
|
|
|
|
separateLeaf = !aItem->Frame()->StyleText()->HasTextShadow();
|
|
|
|
} else {
|
|
|
|
// Container display items are not currently supported because the clip
|
|
|
|
// rect of a stacking context is not handled the same as normal display
|
|
|
|
// items.
|
|
|
|
separateLeaf = aItem->GetChildren() == nullptr;
|
2018-09-14 17:42:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemClips clips(asr, clip, separateLeaf);
|
2018-05-08 16:08:39 +03:00
|
|
|
MOZ_ASSERT(!mItemClipStack.empty());
|
|
|
|
if (clips.HasSameInputs(mItemClipStack.top())) {
|
|
|
|
// Early-exit because if the clips are the same as aItem's previous sibling,
|
|
|
|
// then we don't need to do do the work of popping the old stuff and then
|
|
|
|
// pushing it right back on for the new item. Note that if aItem doesn't
|
|
|
|
// have a previous sibling, that means BeginList would have been called
|
|
|
|
// just before this, which will have pushed a ItemClips(nullptr, nullptr)
|
|
|
|
// onto mItemClipStack, so the HasSameInputs check should return false.
|
|
|
|
CLIP_LOG("early-exit for %p\n", aItem);
|
|
|
|
return;
|
|
|
|
}
|
2018-09-14 17:42:23 +03:00
|
|
|
|
2018-05-08 16:08:39 +03:00
|
|
|
// Pop aItem's previous sibling's stuff from mBuilder in preparation for
|
|
|
|
// pushing aItem's stuff.
|
|
|
|
mItemClipStack.top().Unapply(mBuilder);
|
|
|
|
mItemClipStack.pop();
|
|
|
|
|
|
|
|
// Zoom display items report their bounds etc using the parent document's
|
|
|
|
// APD because zoom items act as a conversion layer between the two different
|
|
|
|
// APDs.
|
2018-09-14 17:42:23 +03:00
|
|
|
int32_t auPerDevPixel;
|
|
|
|
if (type == DisplayItemType::TYPE_ZOOM) {
|
2018-05-08 16:08:39 +03:00
|
|
|
auPerDevPixel = static_cast<nsDisplayZoom*>(aItem)->GetParentAppUnitsPerDevPixel();
|
2018-09-14 17:42:23 +03:00
|
|
|
} else {
|
|
|
|
auPerDevPixel = aItem->Frame()->PresContext()->AppUnitsPerDevPixel();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the leaf of the clip chain is going to be merged with the display item's
|
|
|
|
// clip rect, then we should create a clip chain id from the leaf's parent.
|
|
|
|
if (separateLeaf) {
|
|
|
|
clip = clip->mParent;
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// There are two ASR chains here that we need to be fully defined. One is the
|
|
|
|
// ASR chain pointed to by |asr|. The other is the
|
|
|
|
// ASR chain pointed to by clip->mASR. We pick the leafmost
|
|
|
|
// of these two chains because that one will include the other. Calling
|
|
|
|
// DefineScrollLayers with this leafmost ASR will recursively define all the
|
|
|
|
// ASRs that we care about for this item, but will not actually push
|
|
|
|
// anything onto the WR stack.
|
|
|
|
const ActiveScrolledRoot* leafmostASR = asr;
|
|
|
|
if (clip) {
|
|
|
|
leafmostASR = ActiveScrolledRoot::PickDescendant(leafmostASR, clip->mASR);
|
|
|
|
}
|
|
|
|
Maybe<wr::WrClipId> leafmostId = DefineScrollLayers(leafmostASR, aItem, aStackingContext);
|
|
|
|
|
|
|
|
// Define all the clips in the item's clip chain, and obtain a clip chain id
|
|
|
|
// for it.
|
|
|
|
clips.mClipChainId = DefineClipChain(clip, auPerDevPixel, aStackingContext);
|
|
|
|
|
|
|
|
if (clip && clip->mASR == asr) {
|
|
|
|
// If the clip's ASR is the same as the item's ASR, then we want to use
|
|
|
|
// the clip as the "scrollframe" for the item, as WR will do the right thing
|
|
|
|
// when building the ClipScrollTree and ensure the item scrolls with the
|
|
|
|
// ASR. Note in particular that we don't want to use scroll id of |asr| here
|
|
|
|
// because we might have a situation where there is a stacking context
|
|
|
|
// between |asr| and |aItem|, and if we used |asr|'s scroll id, then WR
|
|
|
|
// would effectively hoist the item out of the stacking context and attach
|
|
|
|
// it directly to |asr|. This can produce incorrect results. Using the clip
|
|
|
|
// instead of the ASR is strictly better because the clip is usually defined
|
|
|
|
// inside the stacking context, and so the item also stays "inside" the
|
|
|
|
// stacking context rather than geting hoisted out. Note that there might
|
|
|
|
// be cases where the clip is also "outside" the stacking context and in
|
|
|
|
// theory that situation might not be handled correctly, but I haven't seen
|
|
|
|
// it in practice so far.
|
|
|
|
const ClipIdMap& cache = mCacheStack.top();
|
|
|
|
auto it = cache.find(clip);
|
|
|
|
MOZ_ASSERT(it != cache.end());
|
|
|
|
clips.mScrollId = Some(it->second);
|
|
|
|
} else if (clip) {
|
|
|
|
// If the clip's ASR is different, then we need to set the scroll id
|
|
|
|
// explicitly to match the desired ASR.
|
|
|
|
FrameMetrics::ViewID viewId = asr
|
|
|
|
? asr->GetViewId()
|
|
|
|
: FrameMetrics::NULL_SCROLL_ID;
|
|
|
|
Maybe<wr::WrClipId> scrollId =
|
|
|
|
mBuilder->GetScrollIdForDefinedScrollLayer(viewId);
|
|
|
|
MOZ_ASSERT(scrollId.isSome());
|
2018-05-08 16:16:29 +03:00
|
|
|
clips.mScrollId = ClipIdAfterOverride(scrollId);
|
2018-05-08 16:08:39 +03:00
|
|
|
} else {
|
|
|
|
// If we don't have a clip at all, then we don't want to explicitly push
|
|
|
|
// the ASR either, because as with the first clause of this if condition,
|
|
|
|
// the item might get hoisted out of a stacking context that was pushed
|
|
|
|
// between the |asr| and this |aItem|. Instead we just leave clips.mScrollId
|
|
|
|
// empty and things seem to work out.
|
|
|
|
// XXX: there might be cases where things don't just "work out", in which
|
|
|
|
// case we might need to do something smarter here.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that we have the scroll id and a clip id for the item, push it onto
|
|
|
|
// the WR stack.
|
2018-09-14 17:42:23 +03:00
|
|
|
clips.Apply(mBuilder, auPerDevPixel);
|
2018-05-08 16:08:39 +03:00
|
|
|
mItemClipStack.push(clips);
|
|
|
|
|
|
|
|
CLIP_LOG("done setup for %p\n", aItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
Maybe<wr::WrClipId>
|
|
|
|
ClipManager::DefineScrollLayers(const ActiveScrolledRoot* aASR,
|
|
|
|
nsDisplayItem* aItem,
|
|
|
|
const StackingContextHelper& aSc)
|
|
|
|
{
|
|
|
|
if (!aASR) {
|
|
|
|
// Recursion base case
|
|
|
|
return Nothing();
|
|
|
|
}
|
|
|
|
FrameMetrics::ViewID viewId = aASR->GetViewId();
|
|
|
|
Maybe<wr::WrClipId> scrollId = mBuilder->GetScrollIdForDefinedScrollLayer(viewId);
|
|
|
|
if (scrollId) {
|
|
|
|
// If we've already defined this scroll layer before, we can early-exit
|
|
|
|
return scrollId;
|
|
|
|
}
|
|
|
|
// Recurse to define the ancestors
|
|
|
|
Maybe<wr::WrClipId> ancestorScrollId = DefineScrollLayers(aASR->mParent, aItem, aSc);
|
|
|
|
|
|
|
|
Maybe<ScrollMetadata> metadata = aASR->mScrollableFrame->ComputeScrollMetadata(
|
2018-10-19 17:24:50 +03:00
|
|
|
mManager, aItem->ReferenceFrame(), Nothing(), nullptr);
|
2018-10-24 20:45:39 +03:00
|
|
|
if (!metadata) {
|
|
|
|
MOZ_ASSERT_UNREACHABLE("Expected scroll metadata to be available!");
|
|
|
|
return ancestorScrollId;
|
|
|
|
}
|
2018-05-08 16:08:39 +03:00
|
|
|
|
2018-10-24 20:45:39 +03:00
|
|
|
FrameMetrics& metrics = metadata->GetMetrics();
|
2018-05-08 16:08:39 +03:00
|
|
|
if (!metrics.IsScrollable()) {
|
|
|
|
// This item is a scrolling no-op, skip over it in the ASR chain.
|
|
|
|
return ancestorScrollId;
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutDeviceRect contentRect =
|
|
|
|
metrics.GetExpandedScrollableRect() * metrics.GetDevPixelsPerCSSPixel();
|
|
|
|
LayoutDeviceRect clipBounds =
|
|
|
|
LayoutDeviceRect::FromUnknownRect(metrics.GetCompositionBounds().ToUnknownRect());
|
|
|
|
// The content rect that we hand to PushScrollLayer should be relative to
|
|
|
|
// the same origin as the clipBounds that we hand to PushScrollLayer - that
|
|
|
|
// is, both of them should be relative to the stacking context `aSc`.
|
|
|
|
// However, when we get the scrollable rect from the FrameMetrics, the origin
|
|
|
|
// has nothing to do with the position of the frame but instead represents
|
|
|
|
// the minimum allowed scroll offset of the scrollable content. While APZ
|
|
|
|
// uses this to clamp the scroll position, we don't need to send this to
|
|
|
|
// WebRender at all. Instead, we take the position from the composition
|
|
|
|
// bounds.
|
|
|
|
contentRect.MoveTo(clipBounds.TopLeft());
|
|
|
|
|
|
|
|
Maybe<wr::WrClipId> parent = ClipIdAfterOverride(ancestorScrollId);
|
|
|
|
scrollId = Some(mBuilder->DefineScrollLayer(viewId, parent,
|
|
|
|
wr::ToRoundedLayoutRect(contentRect),
|
|
|
|
wr::ToRoundedLayoutRect(clipBounds)));
|
|
|
|
|
|
|
|
return scrollId;
|
|
|
|
}
|
|
|
|
|
|
|
|
Maybe<wr::WrClipChainId>
|
|
|
|
ClipManager::DefineClipChain(const DisplayItemClipChain* aChain,
|
|
|
|
int32_t aAppUnitsPerDevPixel,
|
|
|
|
const StackingContextHelper& aSc)
|
|
|
|
{
|
|
|
|
nsTArray<wr::WrClipId> clipIds;
|
|
|
|
// Iterate through the clips in the current item's clip chain, define them
|
|
|
|
// in WR, and put their IDs into |clipIds|.
|
|
|
|
for (const DisplayItemClipChain* chain = aChain; chain; chain = chain->mParent) {
|
|
|
|
ClipIdMap& cache = mCacheStack.top();
|
|
|
|
auto it = cache.find(chain);
|
|
|
|
if (it != cache.end()) {
|
|
|
|
// Found it in the currently-active cache, so just use the id we have for
|
|
|
|
// it.
|
2018-06-20 23:30:13 +03:00
|
|
|
CLIP_LOG("cache[%p] => %zu\n", chain, it->second.id);
|
2018-05-08 16:08:39 +03:00
|
|
|
clipIds.AppendElement(it->second);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!chain->mClip.HasClip()) {
|
|
|
|
// This item in the chain is a no-op, skip over it
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutDeviceRect clip = LayoutDeviceRect::FromAppUnits(
|
|
|
|
chain->mClip.GetClipRect(), aAppUnitsPerDevPixel);
|
|
|
|
nsTArray<wr::ComplexClipRegion> wrRoundedRects;
|
|
|
|
chain->mClip.ToComplexClipRegions(aAppUnitsPerDevPixel, aSc, wrRoundedRects);
|
|
|
|
|
|
|
|
FrameMetrics::ViewID viewId = chain->mASR
|
|
|
|
? chain->mASR->GetViewId()
|
|
|
|
: FrameMetrics::NULL_SCROLL_ID;
|
|
|
|
Maybe<wr::WrClipId> scrollId =
|
|
|
|
mBuilder->GetScrollIdForDefinedScrollLayer(viewId);
|
|
|
|
// Before calling DefineClipChain we defined the ASRs by calling
|
|
|
|
// DefineScrollLayers, so we must have a scrollId here.
|
|
|
|
MOZ_ASSERT(scrollId.isSome());
|
|
|
|
|
|
|
|
// Define the clip
|
|
|
|
Maybe<wr::WrClipId> parent = ClipIdAfterOverride(scrollId);
|
|
|
|
wr::WrClipId clipId = mBuilder->DefineClip(
|
|
|
|
parent,
|
|
|
|
wr::ToRoundedLayoutRect(clip), &wrRoundedRects);
|
|
|
|
clipIds.AppendElement(clipId);
|
|
|
|
cache[chain] = clipId;
|
2018-06-20 23:30:13 +03:00
|
|
|
CLIP_LOG("cache[%p] <= %zu\n", chain, clipId.id);
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now find the parent display item's clipchain id
|
|
|
|
Maybe<wr::WrClipChainId> parentChainId;
|
|
|
|
if (!mItemClipStack.empty()) {
|
|
|
|
parentChainId = mItemClipStack.top().mClipChainId;
|
|
|
|
}
|
|
|
|
|
|
|
|
// And define the current display item's clipchain using the clips and the
|
|
|
|
// parent. If the current item has no clips of its own, just use the parent
|
|
|
|
// item's clipchain.
|
|
|
|
Maybe<wr::WrClipChainId> chainId;
|
|
|
|
if (clipIds.Length() > 0) {
|
|
|
|
chainId = Some(mBuilder->DefineClipChain(parentChainId, clipIds));
|
|
|
|
} else {
|
|
|
|
chainId = parentChainId;
|
|
|
|
}
|
|
|
|
return chainId;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClipManager::~ClipManager()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mBuilder);
|
|
|
|
MOZ_ASSERT(mCacheStack.empty());
|
|
|
|
MOZ_ASSERT(mItemClipStack.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
ClipManager::ItemClips::ItemClips(const ActiveScrolledRoot* aASR,
|
2018-09-14 17:42:23 +03:00
|
|
|
const DisplayItemClipChain* aChain,
|
|
|
|
bool aSeparateLeaf)
|
2018-05-08 16:08:39 +03:00
|
|
|
: mASR(aASR)
|
|
|
|
, mChain(aChain)
|
2018-09-14 17:42:23 +03:00
|
|
|
, mSeparateLeaf(aSeparateLeaf)
|
2018-05-08 16:08:39 +03:00
|
|
|
, mApplied(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-09-14 17:42:23 +03:00
|
|
|
ClipManager::ItemClips::Apply(wr::DisplayListBuilder* aBuilder,
|
|
|
|
int32_t aAppUnitsPerDevPixel)
|
2018-05-08 16:08:39 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mApplied);
|
|
|
|
mApplied = true;
|
2018-09-14 17:42:23 +03:00
|
|
|
|
|
|
|
Maybe<wr::LayoutRect> clipLeaf;
|
|
|
|
if (mSeparateLeaf) {
|
|
|
|
MOZ_ASSERT(mChain);
|
|
|
|
clipLeaf.emplace(wr::ToRoundedLayoutRect(LayoutDeviceRect::FromAppUnits(
|
|
|
|
mChain->mClip.GetClipRect(), aAppUnitsPerDevPixel)));
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
2018-09-14 17:42:23 +03:00
|
|
|
|
|
|
|
aBuilder->PushClipAndScrollInfo(mScrollId.ptrOr(nullptr),
|
|
|
|
mClipChainId.ptrOr(nullptr),
|
|
|
|
clipLeaf);
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::ItemClips::Unapply(wr::DisplayListBuilder* aBuilder)
|
|
|
|
{
|
|
|
|
if (mApplied) {
|
|
|
|
mApplied = false;
|
2018-09-14 17:42:23 +03:00
|
|
|
aBuilder->PopClipAndScrollInfo(mScrollId.ptrOr(nullptr));
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ClipManager::ItemClips::HasSameInputs(const ItemClips& aOther)
|
|
|
|
{
|
|
|
|
return mASR == aOther.mASR &&
|
2018-09-14 17:42:23 +03:00
|
|
|
mChain == aOther.mChain &&
|
|
|
|
mSeparateLeaf == aOther.mSeparateLeaf;
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ClipManager::ItemClips::CopyOutputsFrom(const ItemClips& aOther)
|
|
|
|
{
|
|
|
|
mScrollId = aOther.mScrollId;
|
|
|
|
mClipChainId = aOther.mClipChainId;
|
2018-09-14 17:42:23 +03:00
|
|
|
mSeparateLeaf = aOther.mSeparateLeaf;
|
2018-05-08 16:08:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|