2015-05-03 22:32:37 +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: */
|
2013-03-19 21:43:31 +04: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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGFEGaussianBlurElement.h"
|
2013-03-19 21:43:31 +04:00
|
|
|
#include "mozilla/dom/SVGFEGaussianBlurElementBinding.h"
|
2020-06-30 21:11:50 +03:00
|
|
|
#include "mozilla/SVGFilterInstance.h"
|
2021-08-10 17:14:37 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
|
|
|
#include "mozilla/dom/BindContext.h"
|
2013-03-19 21:43:31 +04:00
|
|
|
|
2018-12-21 14:43:29 +03:00
|
|
|
NS_IMPL_NS_NEW_SVG_ELEMENT(FEGaussianBlur)
|
2013-03-19 21:43:31 +04:00
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-03-19 21:43:31 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
JSObject* SVGFEGaussianBlurElement::WrapNode(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return SVGFEGaussianBlurElement_Binding::Wrap(aCx, this, aGivenProto);
|
2013-03-19 21:43:31 +04:00
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::NumberPairInfo SVGFEGaussianBlurElement::sNumberPairInfo[1] = {
|
2018-03-29 12:45:24 +03:00
|
|
|
{nsGkAtoms::stdDeviation, 0, 0}};
|
2013-03-19 21:43:31 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::StringInfo SVGFEGaussianBlurElement::sStringInfo[2] = {
|
2018-03-29 12:45:24 +03:00
|
|
|
{nsGkAtoms::result, kNameSpaceID_None, true},
|
|
|
|
{nsGkAtoms::in, kNameSpaceID_None, true}};
|
2013-03-19 21:43:31 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-05-30 05:58:49 +03:00
|
|
|
// nsINode methods
|
2013-03-19 21:43:31 +04:00
|
|
|
|
2013-03-19 21:43:31 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEGaussianBlurElement)
|
2013-03-19 21:43:31 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> SVGFEGaussianBlurElement::In1() {
|
2013-03-19 21:43:31 +04:00
|
|
|
return mStringAttributes[IN1].ToDOMAnimatedString(this);
|
2013-03-19 21:43:31 +04:00
|
|
|
}
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedNumber>
|
|
|
|
SVGFEGaussianBlurElement::StdDeviationX() {
|
2013-03-19 21:43:31 +04:00
|
|
|
return mNumberPairAttributes[STD_DEV].ToDOMAnimatedNumber(
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedNumberPair::eFirst, this);
|
2013-03-19 21:43:31 +04:00
|
|
|
}
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedNumber>
|
|
|
|
SVGFEGaussianBlurElement::StdDeviationY() {
|
2013-03-19 21:43:31 +04:00
|
|
|
return mNumberPairAttributes[STD_DEV].ToDOMAnimatedNumber(
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedNumberPair::eSecond, this);
|
2013-03-19 21:43:31 +04:00
|
|
|
}
|
|
|
|
|
2013-03-19 21:43:31 +04:00
|
|
|
void SVGFEGaussianBlurElement::SetStdDeviation(float stdDeviationX,
|
|
|
|
float stdDeviationY) {
|
2013-03-19 21:43:31 +04:00
|
|
|
mNumberPairAttributes[STD_DEV].SetBaseValues(stdDeviationX, stdDeviationY,
|
|
|
|
this);
|
|
|
|
}
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
FilterPrimitiveDescription SVGFEGaussianBlurElement::GetPrimitiveDescription(
|
2020-06-30 21:11:50 +03:00
|
|
|
SVGFilterInstance* aInstance, const IntRect& aFilterSubregion,
|
2014-01-08 13:30:03 +04:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages) {
|
2013-11-27 15:25:29 +04:00
|
|
|
float stdX = aInstance->GetPrimitiveNumber(SVGContentUtils::X,
|
|
|
|
&mNumberPairAttributes[STD_DEV],
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedNumberPair::eFirst);
|
2013-11-27 15:25:29 +04:00
|
|
|
float stdY = aInstance->GetPrimitiveNumber(SVGContentUtils::Y,
|
|
|
|
&mNumberPairAttributes[STD_DEV],
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedNumberPair::eSecond);
|
2013-11-27 15:25:29 +04:00
|
|
|
if (stdX < 0 || stdY < 0) {
|
2018-09-19 20:18:44 +03:00
|
|
|
return FilterPrimitiveDescription();
|
2013-03-19 21:43:31 +04:00
|
|
|
}
|
|
|
|
|
2018-09-19 20:18:16 +03:00
|
|
|
GaussianBlurAttributes atts;
|
|
|
|
atts.mStdDeviation = Size(stdX, stdY);
|
2018-09-19 20:18:44 +03:00
|
|
|
return FilterPrimitiveDescription(AsVariant(std::move(atts)));
|
2013-03-19 21:43:31 +04:00
|
|
|
}
|
|
|
|
|
2013-03-19 21:43:31 +04:00
|
|
|
bool SVGFEGaussianBlurElement::AttributeAffectsRendering(
|
2017-10-03 01:05:19 +03:00
|
|
|
int32_t aNameSpaceID, nsAtom* aAttribute) const {
|
2013-03-19 21:43:31 +04:00
|
|
|
return SVGFEGaussianBlurElementBase::AttributeAffectsRendering(aNameSpaceID,
|
|
|
|
aAttribute) ||
|
2013-03-19 21:43:31 +04:00
|
|
|
(aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::in ||
|
|
|
|
aAttribute == nsGkAtoms::stdDeviation));
|
|
|
|
}
|
|
|
|
|
2013-03-19 21:43:31 +04:00
|
|
|
void SVGFEGaussianBlurElement::GetSourceImageNames(
|
2018-12-21 19:24:17 +03:00
|
|
|
nsTArray<SVGStringInfo>& aSources) {
|
|
|
|
aSources.AppendElement(SVGStringInfo(&mStringAttributes[IN1], this));
|
2013-03-19 21:43:31 +04:00
|
|
|
}
|
|
|
|
|
2021-08-10 17:14:37 +03:00
|
|
|
nsresult SVGFEGaussianBlurElement::BindToTree(BindContext& aCtx,
|
|
|
|
nsINode& aParent) {
|
|
|
|
if (aCtx.InComposedDoc()) {
|
|
|
|
aCtx.OwnerDoc().SetUseCounter(eUseCounter_custom_feGaussianBlur);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SVGFE::BindToTree(aCtx, aParent);
|
|
|
|
}
|
|
|
|
|
2013-03-19 21:43:31 +04:00
|
|
|
//----------------------------------------------------------------------
|
2018-12-21 11:58:14 +03:00
|
|
|
// SVGElement methods
|
2013-03-19 21:43:31 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::NumberPairAttributesInfo
|
2013-03-19 21:43:31 +04:00
|
|
|
SVGFEGaussianBlurElement::GetNumberPairInfo() {
|
2013-03-19 21:43:31 +04:00
|
|
|
return NumberPairAttributesInfo(mNumberPairAttributes, sNumberPairInfo,
|
|
|
|
ArrayLength(sNumberPairInfo));
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::StringAttributesInfo SVGFEGaussianBlurElement::GetStringInfo() {
|
2013-03-19 21:43:31 +04:00
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|