зеркало из https://github.com/mozilla/gecko-dev.git
518 строки
18 KiB
C++
518 строки
18 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
// Main header first:
|
|
#include "nsSVGClipPathFrame.h"
|
|
|
|
// Keep others in (case-insensitive) order:
|
|
#include "AutoReferenceChainGuard.h"
|
|
#include "DrawResult.h"
|
|
#include "gfxContext.h"
|
|
#include "mozilla/dom/SVGClipPathElement.h"
|
|
#include "nsGkAtoms.h"
|
|
#include "nsSVGEffects.h"
|
|
#include "SVGGeometryElement.h"
|
|
#include "SVGGeometryFrame.h"
|
|
#include "nsSVGUtils.h"
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
using namespace mozilla::gfx;
|
|
using namespace mozilla::image;
|
|
|
|
//----------------------------------------------------------------------
|
|
// Implementation
|
|
|
|
nsIFrame*
|
|
NS_NewSVGClipPathFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
{
|
|
return new (aPresShell) nsSVGClipPathFrame(aContext);
|
|
}
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGClipPathFrame)
|
|
|
|
void
|
|
nsSVGClipPathFrame::ApplyClipPath(gfxContext& aContext,
|
|
nsIFrame* aClippedFrame,
|
|
const gfxMatrix& aMatrix)
|
|
{
|
|
MOZ_ASSERT(IsTrivial(), "Caller needs to use GetClipMask");
|
|
|
|
DrawTarget& aDrawTarget = *aContext.GetDrawTarget();
|
|
|
|
// No need for AutoReferenceChainGuard since simple clip paths by definition
|
|
// don't reference another clip path.
|
|
|
|
// Restore current transform after applying clip path:
|
|
gfxContextMatrixAutoSaveRestore autoRestore(&aContext);
|
|
|
|
RefPtr<Path> clipPath;
|
|
|
|
nsSVGDisplayableFrame* singleClipPathChild = nullptr;
|
|
IsTrivial(&singleClipPathChild);
|
|
|
|
if (singleClipPathChild) {
|
|
SVGGeometryFrame* pathFrame = do_QueryFrame(singleClipPathChild);
|
|
if (pathFrame) {
|
|
SVGGeometryElement* pathElement =
|
|
static_cast<SVGGeometryElement*>(pathFrame->GetContent());
|
|
gfxMatrix toChildsUserSpace = pathElement->
|
|
PrependLocalTransformsTo(GetClipPathTransform(aClippedFrame) * aMatrix,
|
|
eUserSpaceToParent);
|
|
gfxMatrix newMatrix =
|
|
aContext.CurrentMatrix().PreMultiply(toChildsUserSpace).NudgeToIntegers();
|
|
if (!newMatrix.IsSingular()) {
|
|
aContext.SetMatrix(newMatrix);
|
|
FillRule clipRule =
|
|
nsSVGUtils::ToFillRule(pathFrame->StyleSVG()->mClipRule);
|
|
clipPath = pathElement->GetOrBuildPath(aDrawTarget, clipRule);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (clipPath) {
|
|
aContext.Clip(clipPath);
|
|
} else {
|
|
// The spec says clip away everything if we have no children or the
|
|
// clipping path otherwise can't be resolved:
|
|
aContext.Clip(Rect());
|
|
}
|
|
}
|
|
|
|
already_AddRefed<DrawTarget>
|
|
nsSVGClipPathFrame::CreateClipMask(gfxContext& aReferenceContext,
|
|
IntPoint& aOffset)
|
|
{
|
|
gfxContextMatrixAutoSaveRestore autoRestoreMatrix(&aReferenceContext);
|
|
|
|
aReferenceContext.SetMatrix(gfxMatrix());
|
|
gfxRect rect = aReferenceContext.GetClipExtents();
|
|
IntRect bounds = RoundedOut(ToRect(rect));
|
|
if (bounds.IsEmpty()) {
|
|
// We don't need to create a mask surface, all drawing is clipped anyway.
|
|
return nullptr;
|
|
}
|
|
|
|
DrawTarget* referenceDT = aReferenceContext.GetDrawTarget();
|
|
RefPtr<DrawTarget> maskDT =
|
|
referenceDT->CreateSimilarDrawTarget(bounds.Size(), SurfaceFormat::A8);
|
|
|
|
aOffset = bounds.TopLeft();
|
|
|
|
return maskDT.forget();
|
|
}
|
|
|
|
static void
|
|
ComposeExtraMask(DrawTarget* aTarget, const gfxMatrix& aMaskTransfrom,
|
|
SourceSurface* aExtraMask, const Matrix& aExtraMasksTransform)
|
|
{
|
|
MOZ_ASSERT(aExtraMask);
|
|
|
|
Matrix origin = aTarget->GetTransform();
|
|
aTarget->SetTransform(aExtraMasksTransform * aTarget->GetTransform());
|
|
aTarget->MaskSurface(ColorPattern(Color(0.0, 0.0, 0.0, 1.0)),
|
|
aExtraMask,
|
|
Point(0, 0),
|
|
DrawOptions(1.0, CompositionOp::OP_IN));
|
|
aTarget->SetTransform(origin);
|
|
}
|
|
|
|
DrawResult
|
|
nsSVGClipPathFrame::PaintClipMask(gfxContext& aMaskContext,
|
|
nsIFrame* aClippedFrame,
|
|
const gfxMatrix& aMatrix,
|
|
Matrix* aMaskTransform,
|
|
SourceSurface* aExtraMask,
|
|
const Matrix& aExtraMasksTransform)
|
|
{
|
|
static int16_t sRefChainLengthCounter = AutoReferenceChainGuard::noChain;
|
|
|
|
// A clipPath can reference another clipPath, creating a chain of clipPaths
|
|
// that must all be applied. We re-enter this method for each clipPath in a
|
|
// chain, so we need to protect against reference chain related crashes etc.:
|
|
AutoReferenceChainGuard refChainGuard(this, &mIsBeingProcessed,
|
|
&sRefChainLengthCounter);
|
|
if (MOZ_UNLIKELY(!refChainGuard.Reference())) {
|
|
return DrawResult::SUCCESS; // Break reference chain
|
|
}
|
|
|
|
DrawResult result = DrawResult::SUCCESS;
|
|
DrawTarget* maskDT = aMaskContext.GetDrawTarget();
|
|
MOZ_ASSERT(maskDT->GetFormat() == SurfaceFormat::A8);
|
|
|
|
// Paint this clipPath's contents into aMaskDT:
|
|
// We need to set mMatrixForChildren here so that under the PaintSVG calls
|
|
// on our children (below) our GetCanvasTM() method will return the correct
|
|
// transform.
|
|
mMatrixForChildren = GetClipPathTransform(aClippedFrame) * aMatrix;
|
|
|
|
// Check if this clipPath is itself clipped by another clipPath:
|
|
nsSVGClipPathFrame* clipPathThatClipsClipPath =
|
|
nsSVGEffects::GetEffectProperties(this).GetClipPathFrame();
|
|
nsSVGUtils::MaskUsage maskUsage;
|
|
nsSVGUtils::DetermineMaskUsage(this, true, maskUsage);
|
|
|
|
if (maskUsage.shouldApplyClipPath) {
|
|
clipPathThatClipsClipPath->ApplyClipPath(aMaskContext, aClippedFrame,
|
|
aMatrix);
|
|
} else if (maskUsage.shouldGenerateClipMaskLayer) {
|
|
Matrix maskTransform;
|
|
RefPtr<SourceSurface> maskSurface;
|
|
Tie(result, maskSurface) =
|
|
clipPathThatClipsClipPath->GetClipMask(aMaskContext, aClippedFrame,
|
|
aMatrix, &maskTransform);
|
|
aMaskContext.PushGroupForBlendBack(gfxContentType::ALPHA, 1.0,
|
|
maskSurface, maskTransform);
|
|
// The corresponding PopGroupAndBlend call below will mask the
|
|
// blend using |maskSurface|.
|
|
}
|
|
|
|
// Paint our children into the mask:
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
kid = kid->GetNextSibling()) {
|
|
result &= PaintFrameIntoMask(kid, aClippedFrame, aMaskContext, aMatrix);
|
|
}
|
|
|
|
if (maskUsage.shouldGenerateClipMaskLayer) {
|
|
aMaskContext.PopGroupAndBlend();
|
|
} else if (maskUsage.shouldApplyClipPath) {
|
|
aMaskContext.PopClip();
|
|
}
|
|
|
|
// Moz2D transforms in the opposite direction to Thebes
|
|
gfxMatrix maskTransfrom = aMaskContext.CurrentMatrix();
|
|
maskTransfrom.Invert();
|
|
|
|
if (aExtraMask) {
|
|
ComposeExtraMask(maskDT, maskTransfrom, aExtraMask, aExtraMasksTransform);
|
|
}
|
|
|
|
*aMaskTransform = ToMatrix(maskTransfrom);
|
|
return result;
|
|
}
|
|
|
|
DrawResult
|
|
nsSVGClipPathFrame::PaintFrameIntoMask(nsIFrame *aFrame,
|
|
nsIFrame* aClippedFrame,
|
|
gfxContext& aTarget,
|
|
const gfxMatrix& aMatrix)
|
|
{
|
|
nsSVGDisplayableFrame* frame = do_QueryFrame(aFrame);
|
|
if (!frame) {
|
|
return DrawResult::SUCCESS;
|
|
}
|
|
|
|
// The CTM of each frame referencing us can be different.
|
|
frame->NotifySVGChanged(nsSVGDisplayableFrame::TRANSFORM_CHANGED);
|
|
|
|
// Children of this clipPath may themselves be clipped.
|
|
nsSVGEffects::EffectProperties effectProperties =
|
|
nsSVGEffects::GetEffectProperties(aFrame);
|
|
if (effectProperties.HasInvalidClipPath()) {
|
|
return DrawResult::SUCCESS;
|
|
}
|
|
nsSVGClipPathFrame *clipPathThatClipsChild =
|
|
effectProperties.GetClipPathFrame();
|
|
|
|
nsSVGUtils::MaskUsage maskUsage;
|
|
nsSVGUtils::DetermineMaskUsage(aFrame, true, maskUsage);
|
|
DrawResult result = DrawResult::SUCCESS;
|
|
if (maskUsage.shouldApplyClipPath) {
|
|
clipPathThatClipsChild->ApplyClipPath(aTarget, aClippedFrame, aMatrix);
|
|
} else if (maskUsage.shouldGenerateClipMaskLayer) {
|
|
Matrix maskTransform;
|
|
RefPtr<SourceSurface> maskSurface;
|
|
Tie(result, maskSurface) =
|
|
clipPathThatClipsChild->GetClipMask(aTarget, aClippedFrame,
|
|
aMatrix, &maskTransform);
|
|
aTarget.PushGroupForBlendBack(gfxContentType::ALPHA, 1.0,
|
|
maskSurface, maskTransform);
|
|
// The corresponding PopGroupAndBlend call below will mask the
|
|
// blend using |maskSurface|.
|
|
}
|
|
|
|
gfxMatrix toChildsUserSpace = mMatrixForChildren;
|
|
nsIFrame* child = do_QueryFrame(frame);
|
|
nsIContent* childContent = child->GetContent();
|
|
if (childContent->IsSVGElement()) {
|
|
toChildsUserSpace =
|
|
static_cast<const nsSVGElement*>(childContent)->
|
|
PrependLocalTransformsTo(mMatrixForChildren, eUserSpaceToParent);
|
|
}
|
|
|
|
// Our children have NS_STATE_SVG_CLIPPATH_CHILD set on them, and
|
|
// SVGGeometryFrame::Render checks for that state bit and paints
|
|
// only the geometry (opaque black) if set.
|
|
result &= frame->PaintSVG(aTarget, toChildsUserSpace);
|
|
|
|
if (maskUsage.shouldGenerateClipMaskLayer) {
|
|
aTarget.PopGroupAndBlend();
|
|
} else if (maskUsage.shouldApplyClipPath) {
|
|
aTarget.PopClip();
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
mozilla::Pair<DrawResult, RefPtr<SourceSurface>>
|
|
nsSVGClipPathFrame::GetClipMask(gfxContext& aReferenceContext,
|
|
nsIFrame* aClippedFrame,
|
|
const gfxMatrix& aMatrix,
|
|
Matrix* aMaskTransform,
|
|
SourceSurface* aExtraMask,
|
|
const Matrix& aExtraMasksTransform)
|
|
{
|
|
IntPoint offset;
|
|
RefPtr<DrawTarget> maskDT = CreateClipMask(aReferenceContext, offset);
|
|
if (!maskDT) {
|
|
return MakePair(DrawResult::SUCCESS, RefPtr<SourceSurface>());
|
|
}
|
|
|
|
RefPtr<gfxContext> maskContext = gfxContext::CreateOrNull(maskDT);
|
|
if (!maskContext) {
|
|
gfxCriticalError() << "SVGClipPath context problem " << gfx::hexa(maskDT);
|
|
return MakePair(DrawResult::TEMPORARY_ERROR, RefPtr<SourceSurface>());
|
|
}
|
|
maskContext->SetMatrix(aReferenceContext.CurrentMatrix() *
|
|
gfxMatrix::Translation(-offset));
|
|
|
|
DrawResult result = PaintClipMask(*maskContext, aClippedFrame, aMatrix,
|
|
aMaskTransform, aExtraMask,
|
|
aExtraMasksTransform);
|
|
|
|
RefPtr<SourceSurface> surface = maskDT->Snapshot();
|
|
return MakePair(result, Move(surface));
|
|
}
|
|
|
|
bool
|
|
nsSVGClipPathFrame::PointIsInsideClipPath(nsIFrame* aClippedFrame,
|
|
const gfxPoint &aPoint)
|
|
{
|
|
static int16_t sRefChainLengthCounter = AutoReferenceChainGuard::noChain;
|
|
|
|
// A clipPath can reference another clipPath, creating a chain of clipPaths
|
|
// that must all be applied. We re-enter this method for each clipPath in a
|
|
// chain, so we need to protect against reference chain related crashes etc.:
|
|
AutoReferenceChainGuard refChainGuard(this, &mIsBeingProcessed,
|
|
&sRefChainLengthCounter);
|
|
if (MOZ_UNLIKELY(!refChainGuard.Reference())) {
|
|
return false; // Break reference chain
|
|
}
|
|
|
|
gfxMatrix matrix = GetClipPathTransform(aClippedFrame);
|
|
if (!matrix.Invert()) {
|
|
return false;
|
|
}
|
|
gfxPoint point = matrix.Transform(aPoint);
|
|
|
|
// clipPath elements can themselves be clipped by a different clip path. In
|
|
// that case the other clip path further clips away the element that is being
|
|
// clipped by the original clipPath. If this clipPath is being clipped by a
|
|
// different clip path we need to check if it prevents the original element
|
|
// from recieving events at aPoint:
|
|
nsSVGClipPathFrame *clipPathFrame =
|
|
nsSVGEffects::GetEffectProperties(this).GetClipPathFrame();
|
|
if (clipPathFrame &&
|
|
!clipPathFrame->PointIsInsideClipPath(aClippedFrame, aPoint)) {
|
|
return false;
|
|
}
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
kid = kid->GetNextSibling()) {
|
|
nsSVGDisplayableFrame* SVGFrame = do_QueryFrame(kid);
|
|
if (SVGFrame) {
|
|
gfxPoint pointForChild = point;
|
|
gfxMatrix m = static_cast<nsSVGElement*>(kid->GetContent())->
|
|
PrependLocalTransformsTo(gfxMatrix(), eUserSpaceToParent);
|
|
if (!m.IsIdentity()) {
|
|
if (!m.Invert()) {
|
|
return false;
|
|
}
|
|
pointForChild = m.Transform(point);
|
|
}
|
|
if (SVGFrame->GetFrameForPoint(pointForChild)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
nsSVGClipPathFrame::IsTrivial(nsSVGDisplayableFrame **aSingleChild)
|
|
{
|
|
// If the clip path is clipped then it's non-trivial
|
|
if (nsSVGEffects::GetEffectProperties(this).GetClipPathFrame())
|
|
return false;
|
|
|
|
if (aSingleChild) {
|
|
*aSingleChild = nullptr;
|
|
}
|
|
|
|
nsSVGDisplayableFrame* foundChild = nullptr;
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
kid = kid->GetNextSibling()) {
|
|
nsSVGDisplayableFrame* svgChild = do_QueryFrame(kid);
|
|
if (svgChild) {
|
|
// We consider a non-trivial clipPath to be one containing
|
|
// either more than one svg child and/or a svg container
|
|
if (foundChild || svgChild->IsDisplayContainer())
|
|
return false;
|
|
|
|
// or where the child is itself clipped
|
|
if (nsSVGEffects::GetEffectProperties(kid).GetClipPathFrame())
|
|
return false;
|
|
|
|
foundChild = svgChild;
|
|
}
|
|
}
|
|
if (aSingleChild) {
|
|
*aSingleChild = foundChild;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
nsSVGClipPathFrame::IsValid()
|
|
{
|
|
static int16_t sRefChainLengthCounter = AutoReferenceChainGuard::noChain;
|
|
|
|
// A clipPath can reference another clipPath, creating a chain of clipPaths
|
|
// that must all be applied. We re-enter this method for each clipPath in a
|
|
// chain, so we need to protect against reference chain related crashes etc.:
|
|
AutoReferenceChainGuard refChainGuard(this, &mIsBeingProcessed,
|
|
&sRefChainLengthCounter);
|
|
if (MOZ_UNLIKELY(!refChainGuard.Reference())) {
|
|
return false; // Break reference chain
|
|
}
|
|
|
|
if (nsSVGEffects::GetEffectProperties(this).HasInvalidClipPath()) {
|
|
return false;
|
|
}
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
kid = kid->GetNextSibling()) {
|
|
|
|
FrameType kidType = kid->Type();
|
|
|
|
if (kidType == FrameType::SVGUse) {
|
|
for (nsIFrame* grandKid : kid->PrincipalChildList()) {
|
|
|
|
FrameType grandKidType = grandKid->Type();
|
|
|
|
if (grandKidType != FrameType::SVGGeometry &&
|
|
grandKidType != FrameType::SVGText) {
|
|
return false;
|
|
}
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (kidType != FrameType::SVGGeometry && kidType != FrameType::SVGText) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
nsresult
|
|
nsSVGClipPathFrame::AttributeChanged(int32_t aNameSpaceID,
|
|
nsIAtom* aAttribute,
|
|
int32_t aModType)
|
|
{
|
|
if (aNameSpaceID == kNameSpaceID_None) {
|
|
if (aAttribute == nsGkAtoms::transform) {
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
|
nsSVGUtils::NotifyChildrenOfSVGChange(this,
|
|
nsSVGDisplayableFrame::TRANSFORM_CHANGED);
|
|
}
|
|
if (aAttribute == nsGkAtoms::clipPathUnits) {
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
|
}
|
|
}
|
|
|
|
return nsSVGContainerFrame::AttributeChanged(aNameSpaceID,
|
|
aAttribute, aModType);
|
|
}
|
|
|
|
void
|
|
nsSVGClipPathFrame::Init(nsIContent* aContent,
|
|
nsContainerFrame* aParent,
|
|
nsIFrame* aPrevInFlow)
|
|
{
|
|
NS_ASSERTION(aContent->IsSVGElement(nsGkAtoms::clipPath),
|
|
"Content is not an SVG clipPath!");
|
|
|
|
AddStateBits(NS_STATE_SVG_CLIPPATH_CHILD);
|
|
nsSVGContainerFrame::Init(aContent, aParent, aPrevInFlow);
|
|
}
|
|
|
|
gfxMatrix
|
|
nsSVGClipPathFrame::GetCanvasTM()
|
|
{
|
|
return mMatrixForChildren;
|
|
}
|
|
|
|
gfxMatrix
|
|
nsSVGClipPathFrame::GetClipPathTransform(nsIFrame* aClippedFrame)
|
|
{
|
|
SVGClipPathElement *content = static_cast<SVGClipPathElement*>(mContent);
|
|
|
|
gfxMatrix tm = content->PrependLocalTransformsTo(gfxMatrix());
|
|
|
|
nsSVGEnum* clipPathUnits =
|
|
&content->mEnumAttributes[SVGClipPathElement::CLIPPATHUNITS];
|
|
|
|
return nsSVGUtils::AdjustMatrixForUnits(tm, clipPathUnits, aClippedFrame);
|
|
}
|
|
|
|
SVGBBox
|
|
nsSVGClipPathFrame::GetBBoxForClipPathFrame(const SVGBBox &aBBox,
|
|
const gfxMatrix &aMatrix)
|
|
{
|
|
nsIContent* node = GetContent()->GetFirstChild();
|
|
SVGBBox unionBBox, tmpBBox;
|
|
for (; node; node = node->GetNextSibling()) {
|
|
nsIFrame *frame =
|
|
static_cast<nsSVGElement*>(node)->GetPrimaryFrame();
|
|
if (frame) {
|
|
nsSVGDisplayableFrame* svg = do_QueryFrame(frame);
|
|
if (svg) {
|
|
tmpBBox = svg->GetBBoxContribution(mozilla::gfx::ToMatrix(aMatrix),
|
|
nsSVGUtils::eBBoxIncludeFill);
|
|
nsSVGEffects::EffectProperties effectProperties =
|
|
nsSVGEffects::GetEffectProperties(frame);
|
|
if (effectProperties.HasNoOrValidClipPath()) {
|
|
nsSVGClipPathFrame *clipPathFrame =
|
|
effectProperties.GetClipPathFrame();
|
|
if (clipPathFrame) {
|
|
tmpBBox = clipPathFrame->GetBBoxForClipPathFrame(tmpBBox, aMatrix);
|
|
}
|
|
}
|
|
tmpBBox.Intersect(aBBox);
|
|
unionBBox.UnionEdges(tmpBBox);
|
|
}
|
|
}
|
|
}
|
|
|
|
nsSVGEffects::EffectProperties props =
|
|
nsSVGEffects::GetEffectProperties(this);
|
|
if (props.mClipPath) {
|
|
if (props.HasInvalidClipPath()) {
|
|
unionBBox = SVGBBox();
|
|
} else {
|
|
nsSVGClipPathFrame *clipPathFrame = props.GetClipPathFrame();
|
|
if (clipPathFrame) {
|
|
tmpBBox = clipPathFrame->GetBBoxForClipPathFrame(aBBox, aMatrix);
|
|
unionBBox.Intersect(tmpBBox);
|
|
}
|
|
}
|
|
}
|
|
return unionBBox;
|
|
}
|