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-25 10:26:05 +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/SVGFEDisplacementMapElement.h"
|
2013-03-25 10:26:06 +04:00
|
|
|
#include "mozilla/dom/SVGFEDisplacementMapElementBinding.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-25 10:26:06 +04:00
|
|
|
|
2018-12-21 14:43:29 +03:00
|
|
|
NS_IMPL_NS_NEW_SVG_ELEMENT(FEDisplacementMap)
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2022-05-09 23:41:16 +03:00
|
|
|
namespace mozilla::dom {
|
2013-03-25 10:26:05 +04:00
|
|
|
|
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* SVGFEDisplacementMapElement::WrapNode(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return SVGFEDisplacementMapElement_Binding::Wrap(aCx, this, aGivenProto);
|
2013-03-25 10:26:06 +04:00
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::NumberInfo SVGFEDisplacementMapElement::sNumberInfo[1] = {
|
2018-03-29 12:45:24 +03:00
|
|
|
{nsGkAtoms::scale, 0, false},
|
2013-03-25 10:26:05 +04:00
|
|
|
};
|
|
|
|
|
2019-01-02 21:24:11 +03:00
|
|
|
SVGEnumMapping SVGFEDisplacementMapElement::sChannelMap[] = {
|
2018-03-29 12:45:28 +03:00
|
|
|
{nsGkAtoms::R, SVG_CHANNEL_R},
|
|
|
|
{nsGkAtoms::G, SVG_CHANNEL_G},
|
|
|
|
{nsGkAtoms::B, SVG_CHANNEL_B},
|
|
|
|
{nsGkAtoms::A, SVG_CHANNEL_A},
|
2013-03-25 10:26:05 +04:00
|
|
|
{nullptr, 0}};
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::EnumInfo SVGFEDisplacementMapElement::sEnumInfo[2] = {
|
2018-03-29 12:45:24 +03:00
|
|
|
{nsGkAtoms::xChannelSelector, sChannelMap, SVG_CHANNEL_A},
|
|
|
|
{nsGkAtoms::yChannelSelector, sChannelMap, SVG_CHANNEL_A}};
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::StringInfo SVGFEDisplacementMapElement::sStringInfo[3] = {
|
2018-03-29 12:45:24 +03:00
|
|
|
{nsGkAtoms::result, kNameSpaceID_None, true},
|
|
|
|
{nsGkAtoms::in, kNameSpaceID_None, true},
|
|
|
|
{nsGkAtoms::in2, kNameSpaceID_None, true}};
|
2013-03-25 10:26:05 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-05-30 05:58:49 +03:00
|
|
|
// nsINode methods
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2013-03-25 10:26:06 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEDisplacementMapElement)
|
2013-03-25 10:26:05 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> SVGFEDisplacementMapElement::In1() {
|
2013-03-25 10:26:06 +04:00
|
|
|
return mStringAttributes[IN1].ToDOMAnimatedString(this);
|
2013-03-25 10:26:05 +04:00
|
|
|
}
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> SVGFEDisplacementMapElement::In2() {
|
2013-03-25 10:26:06 +04:00
|
|
|
return mStringAttributes[IN2].ToDOMAnimatedString(this);
|
2013-03-25 10:26:05 +04:00
|
|
|
}
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedNumber> SVGFEDisplacementMapElement::Scale() {
|
2013-03-25 10:26:06 +04:00
|
|
|
return mNumberAttributes[SCALE].ToDOMAnimatedNumber(this);
|
2013-03-25 10:26:05 +04:00
|
|
|
}
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedEnumeration>
|
2013-03-25 10:26:06 +04:00
|
|
|
SVGFEDisplacementMapElement::XChannelSelector() {
|
|
|
|
return mEnumAttributes[CHANNEL_X].ToDOMAnimatedEnum(this);
|
2013-03-25 10:26:05 +04:00
|
|
|
}
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedEnumeration>
|
2013-03-25 10:26:06 +04:00
|
|
|
SVGFEDisplacementMapElement::YChannelSelector() {
|
|
|
|
return mEnumAttributes[CHANNEL_Y].ToDOMAnimatedEnum(this);
|
2013-03-25 10:26:05 +04:00
|
|
|
}
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
FilterPrimitiveDescription SVGFEDisplacementMapElement::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) {
|
2014-01-08 13:30:03 +04:00
|
|
|
if (aInputsAreTainted[1]) {
|
|
|
|
// If the map is tainted, refuse to apply the effect and act as a
|
|
|
|
// pass-through filter instead, as required by the spec.
|
2018-09-19 20:18:16 +03:00
|
|
|
OffsetAttributes atts;
|
|
|
|
atts.mValue = IntPoint(0, 0);
|
2018-09-19 20:18:44 +03:00
|
|
|
return FilterPrimitiveDescription(AsVariant(std::move(atts)));
|
2014-01-08 13:30:03 +04:00
|
|
|
}
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
float scale = aInstance->GetPrimitiveNumber(SVGContentUtils::XY,
|
|
|
|
&mNumberAttributes[SCALE]);
|
|
|
|
uint32_t xChannel = mEnumAttributes[CHANNEL_X].GetAnimValue();
|
|
|
|
uint32_t yChannel = mEnumAttributes[CHANNEL_Y].GetAnimValue();
|
2018-09-19 20:18:16 +03:00
|
|
|
DisplacementMapAttributes atts;
|
|
|
|
atts.mScale = scale;
|
|
|
|
atts.mXChannel = xChannel;
|
|
|
|
atts.mYChannel = yChannel;
|
2018-09-19 20:18:44 +03:00
|
|
|
return FilterPrimitiveDescription(AsVariant(std::move(atts)));
|
2013-03-25 10:26:05 +04:00
|
|
|
}
|
|
|
|
|
2013-03-25 10:26:06 +04:00
|
|
|
bool SVGFEDisplacementMapElement::AttributeAffectsRendering(
|
2017-10-03 01:05:19 +03:00
|
|
|
int32_t aNameSpaceID, nsAtom* aAttribute) const {
|
2013-03-25 10:26:06 +04:00
|
|
|
return SVGFEDisplacementMapElementBase::AttributeAffectsRendering(
|
|
|
|
aNameSpaceID, aAttribute) ||
|
2013-03-25 10:26:05 +04:00
|
|
|
(aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::in || aAttribute == nsGkAtoms::in2 ||
|
|
|
|
aAttribute == nsGkAtoms::scale ||
|
|
|
|
aAttribute == nsGkAtoms::xChannelSelector ||
|
|
|
|
aAttribute == nsGkAtoms::yChannelSelector));
|
|
|
|
}
|
|
|
|
|
2013-03-25 10:26:06 +04:00
|
|
|
void SVGFEDisplacementMapElement::GetSourceImageNames(
|
2018-12-21 19:24:17 +03:00
|
|
|
nsTArray<SVGStringInfo>& aSources) {
|
|
|
|
aSources.AppendElement(SVGStringInfo(&mStringAttributes[IN1], this));
|
|
|
|
aSources.AppendElement(SVGStringInfo(&mStringAttributes[IN2], this));
|
2013-03-25 10:26:05 +04:00
|
|
|
}
|
|
|
|
|
2021-08-10 17:14:37 +03:00
|
|
|
nsresult SVGFEDisplacementMapElement::BindToTree(BindContext& aCtx,
|
|
|
|
nsINode& aParent) {
|
|
|
|
if (aCtx.InComposedDoc()) {
|
|
|
|
aCtx.OwnerDoc().SetUseCounter(eUseCounter_custom_feDisplacementMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SVGFE::BindToTree(aCtx, aParent);
|
|
|
|
}
|
|
|
|
|
2013-03-25 10:26:05 +04:00
|
|
|
//----------------------------------------------------------------------
|
2018-12-21 11:58:14 +03:00
|
|
|
// SVGElement methods
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::NumberAttributesInfo SVGFEDisplacementMapElement::GetNumberInfo() {
|
2013-03-25 10:26:05 +04:00
|
|
|
return NumberAttributesInfo(mNumberAttributes, sNumberInfo,
|
|
|
|
ArrayLength(sNumberInfo));
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::EnumAttributesInfo SVGFEDisplacementMapElement::GetEnumInfo() {
|
2013-03-25 10:26:05 +04:00
|
|
|
return EnumAttributesInfo(mEnumAttributes, sEnumInfo, ArrayLength(sEnumInfo));
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::StringAttributesInfo SVGFEDisplacementMapElement::GetStringInfo() {
|
2013-03-25 10:26:05 +04:00
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
2013-03-25 10:26:06 +04:00
|
|
|
|
2022-05-09 23:41:16 +03:00
|
|
|
} // namespace mozilla::dom
|