2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-26 04:58:59 -07:00
|
|
|
// Main header first:
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsSVGMaskFrame.h"
|
2012-03-20 05:15:55 -07:00
|
|
|
|
2012-03-26 04:58:59 -07:00
|
|
|
// Keep others in (case-insensitive) order:
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "gfxContext.h"
|
2007-05-22 12:31:04 -07:00
|
|
|
#include "gfxImageSurface.h"
|
2012-03-26 04:58:59 -07:00
|
|
|
#include "nsRenderingContext.h"
|
|
|
|
#include "nsSVGEffects.h"
|
2013-01-23 12:59:06 -08:00
|
|
|
#include "mozilla/dom/SVGMaskElement.h"
|
|
|
|
|
|
|
|
using namespace mozilla::dom;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
|
|
|
nsIFrame*
|
2009-01-19 10:31:34 -08:00
|
|
|
NS_NewSVGMaskFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return new (aPresShell) nsSVGMaskFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGMaskFrame)
|
|
|
|
|
2007-05-22 12:31:04 -07:00
|
|
|
already_AddRefed<gfxPattern>
|
2012-03-02 00:28:59 -08:00
|
|
|
nsSVGMaskFrame::ComputeMaskAlpha(nsRenderingContext *aContext,
|
2008-09-10 17:24:16 -07:00
|
|
|
nsIFrame* aParent,
|
2009-07-23 01:35:59 -07:00
|
|
|
const gfxMatrix &aMatrix,
|
2007-03-22 10:30:00 -07:00
|
|
|
float aOpacity)
|
|
|
|
{
|
2007-06-21 04:01:41 -07:00
|
|
|
// If the flag is set when we get here, it means this mask frame
|
|
|
|
// has already been used painting the current mask, and the document
|
|
|
|
// has a mask reference loop.
|
|
|
|
if (mInUse) {
|
|
|
|
NS_WARNING("Mask loop detected!");
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-06-21 04:01:41 -07:00
|
|
|
}
|
|
|
|
AutoMaskReferencer maskRef(this);
|
|
|
|
|
2013-01-23 12:59:06 -08:00
|
|
|
SVGMaskElement *mask = static_cast<SVGMaskElement*>(mContent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint16_t units =
|
2013-01-23 12:59:06 -08:00
|
|
|
mask->mEnumAttributes[SVGMaskElement::MASKUNITS].GetAnimValue();
|
2010-11-24 01:44:34 -08:00
|
|
|
gfxRect bbox;
|
2013-02-17 18:14:02 -08:00
|
|
|
if (units == SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
|
2010-11-24 01:44:34 -08:00
|
|
|
bbox = nsSVGUtils::GetBBox(aParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-11-24 01:44:34 -08:00
|
|
|
gfxRect maskArea = nsSVGUtils::GetRelativeRect(units,
|
2013-01-23 12:59:46 -08:00
|
|
|
&mask->mLengthAttributes[SVGMaskElement::ATTR_X], bbox, aParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-02 00:28:59 -08:00
|
|
|
gfxContext *gfx = aContext->ThebesContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-28 15:59:05 -07:00
|
|
|
// Get the clip extents in device space:
|
2010-11-24 01:44:34 -08:00
|
|
|
gfx->Save();
|
|
|
|
nsSVGUtils::SetClipRect(gfx, aMatrix, maskArea);
|
2012-06-28 15:59:05 -07:00
|
|
|
gfx->IdentityMatrix();
|
2008-09-21 19:14:54 -07:00
|
|
|
gfxRect clipExtents = gfx->GetClipExtents();
|
2011-09-21 04:30:38 -07:00
|
|
|
clipExtents.RoundOut();
|
2007-03-22 10:30:00 -07:00
|
|
|
gfx->Restore();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool resultOverflows;
|
2007-06-13 02:02:48 -07:00
|
|
|
gfxIntSize surfaceSize =
|
|
|
|
nsSVGUtils::ConvertToSurfaceSize(gfxSize(clipExtents.Width(),
|
|
|
|
clipExtents.Height()),
|
|
|
|
&resultOverflows);
|
|
|
|
|
|
|
|
// 0 disables mask, < 0 is an error
|
|
|
|
if (surfaceSize.width <= 0 || surfaceSize.height <= 0)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-06-13 02:02:48 -07:00
|
|
|
|
|
|
|
if (resultOverflows)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-06-13 02:02:48 -07:00
|
|
|
|
2007-05-22 12:31:04 -07:00
|
|
|
nsRefPtr<gfxImageSurface> image =
|
2007-06-13 02:02:48 -07:00
|
|
|
new gfxImageSurface(surfaceSize, gfxASurface::ImageFormatARGB32);
|
2007-07-17 02:24:27 -07:00
|
|
|
if (!image || image->CairoStatus())
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2012-06-28 15:59:05 -07:00
|
|
|
|
|
|
|
// We would like to use gfxImageSurface::SetDeviceOffset() to position
|
|
|
|
// 'image'. However, we need to set the same matrix on the temporary context
|
|
|
|
// and pattern that we create below as is currently set on 'gfx'.
|
|
|
|
// Unfortunately, any device offset set by SetDeviceOffset() is affected by
|
|
|
|
// the transform passed to the SetMatrix() calls, so to avoid that we account
|
|
|
|
// for the device offset in the transform rather than use SetDeviceOffset().
|
|
|
|
gfxMatrix matrix =
|
|
|
|
gfx->CurrentMatrix() * gfxMatrix().Translate(-clipExtents.TopLeft());
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-02 00:28:59 -08:00
|
|
|
nsRenderingContext tmpCtx;
|
|
|
|
tmpCtx.Init(this->PresContext()->DeviceContext(), image);
|
2012-06-28 15:59:05 -07:00
|
|
|
tmpCtx.ThebesContext()->SetMatrix(matrix);
|
2010-11-24 01:44:34 -08:00
|
|
|
|
|
|
|
mMaskParent = aParent;
|
2011-09-25 14:04:32 -07:00
|
|
|
if (mMaskParentMatrix) {
|
|
|
|
*mMaskParentMatrix = aMatrix;
|
|
|
|
} else {
|
|
|
|
mMaskParentMatrix = new gfxMatrix(aMatrix);
|
|
|
|
}
|
2010-11-24 01:44:34 -08:00
|
|
|
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
2010-12-24 01:30:01 -08:00
|
|
|
// The CTM of each frame referencing us can be different
|
|
|
|
nsISVGChildFrame* SVGFrame = do_QueryFrame(kid);
|
|
|
|
if (SVGFrame) {
|
2012-07-23 04:00:43 -07:00
|
|
|
SVGFrame->NotifySVGChanged(nsISVGChildFrame::TRANSFORM_CHANGED);
|
2010-12-24 01:30:01 -08:00
|
|
|
}
|
2012-07-30 07:20:58 -07:00
|
|
|
nsSVGUtils::PaintFrameWithEffects(&tmpCtx, nullptr, kid);
|
2010-11-24 01:44:34 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t *data = image->Data();
|
|
|
|
int32_t stride = image->Stride();
|
2013-02-28 01:50:38 -08:00
|
|
|
nsIntRect rect(0, 0, surfaceSize.width, surfaceSize.height);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-16 13:51:02 -08:00
|
|
|
if (StyleSVGReset()->mMaskType == NS_STYLE_MASK_TYPE_LUMINANCE) {
|
2013-02-24 01:05:09 -08:00
|
|
|
if (StyleSVG()->mColorInterpolation ==
|
|
|
|
NS_STYLE_COLOR_INTERPOLATION_LINEARRGB) {
|
2013-02-28 01:50:38 -08:00
|
|
|
nsSVGUtils::ComputeLinearRGBLuminanceMask(data, stride, rect, aOpacity);
|
|
|
|
} else {
|
|
|
|
nsSVGUtils::ComputesRGBLuminanceMask(data, stride, rect, aOpacity);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2012-12-20 16:15:22 -08:00
|
|
|
} else {
|
2013-02-28 01:50:38 -08:00
|
|
|
nsSVGUtils::ComputeAlphaMask(data, stride, rect, aOpacity);
|
2012-12-20 16:15:22 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-04-22 04:15:59 -07:00
|
|
|
nsRefPtr<gfxPattern> retval = new gfxPattern(image);
|
2012-06-28 15:59:05 -07:00
|
|
|
retval->SetMatrix(matrix);
|
2013-04-22 04:15:59 -07:00
|
|
|
return retval.forget();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-19 05:59:52 -07:00
|
|
|
NS_IMETHODIMP
|
2012-08-22 08:56:38 -07:00
|
|
|
nsSVGMaskFrame::AttributeChanged(int32_t aNameSpaceID,
|
2011-09-19 05:59:52 -07:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aModType)
|
2011-09-19 05:59:52 -07:00
|
|
|
{
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::x ||
|
|
|
|
aAttribute == nsGkAtoms::y ||
|
|
|
|
aAttribute == nsGkAtoms::width ||
|
|
|
|
aAttribute == nsGkAtoms::height||
|
|
|
|
aAttribute == nsGkAtoms::maskUnits ||
|
|
|
|
aAttribute == nsGkAtoms::maskContentUnits)) {
|
2012-06-23 07:19:00 -07:00
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
2011-09-19 05:59:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsSVGMaskFrameBase::AttributeChanged(aNameSpaceID,
|
|
|
|
aAttribute, aModType);
|
|
|
|
}
|
|
|
|
|
2009-01-19 10:31:34 -08:00
|
|
|
#ifdef DEBUG
|
2013-03-19 18:47:48 -07:00
|
|
|
void
|
2009-01-19 10:31:34 -08:00
|
|
|
nsSVGMaskFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
2013-01-07 19:22:41 -08:00
|
|
|
NS_ASSERTION(aContent->IsSVG(nsGkAtoms::mask),
|
|
|
|
"Content is not an SVG mask");
|
2009-01-19 10:31:34 -08:00
|
|
|
|
2013-03-19 18:47:48 -07:00
|
|
|
nsSVGMaskFrameBase::Init(aContent, aParent, aPrevInFlow);
|
2009-01-19 10:31:34 -08:00
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom *
|
|
|
|
nsSVGMaskFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgMaskFrame;
|
|
|
|
}
|
|
|
|
|
2009-04-28 21:31:34 -07:00
|
|
|
gfxMatrix
|
2012-08-22 08:56:38 -07:00
|
|
|
nsSVGMaskFrame::GetCanvasTM(uint32_t aFor)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mMaskParentMatrix, "null parent matrix");
|
|
|
|
|
2013-01-23 12:59:06 -08:00
|
|
|
SVGMaskElement *mask = static_cast<SVGMaskElement*>(mContent);
|
2007-04-26 01:36:16 -07:00
|
|
|
|
2011-09-25 14:04:32 -07:00
|
|
|
return nsSVGUtils::AdjustMatrixForUnits(
|
|
|
|
mMaskParentMatrix ? *mMaskParentMatrix : gfxMatrix(),
|
2013-01-23 12:59:06 -08:00
|
|
|
&mask->mEnumAttributes[SVGMaskElement::MASKCONTENTUNITS],
|
2011-09-25 14:04:32 -07:00
|
|
|
mMaskParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|