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 03:14:40 +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/SVGFEColorMatrixElement.h"
|
2018-12-28 05:47:10 +03:00
|
|
|
|
|
|
|
#include "DOMSVGAnimatedNumberList.h"
|
2013-03-19 03:14:40 +04:00
|
|
|
#include "mozilla/dom/SVGFEColorMatrixElementBinding.h"
|
|
|
|
#include "nsSVGUtils.h"
|
|
|
|
|
|
|
|
#define NUM_ENTRIES_IN_4x5_MATRIX 20
|
|
|
|
|
2018-12-21 14:43:29 +03:00
|
|
|
NS_IMPL_NS_NEW_SVG_ELEMENT(FEColorMatrix)
|
2013-03-19 03:14:40 +04:00
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-03-19 03:14:40 +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* SVGFEColorMatrixElement::WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return SVGFEColorMatrixElement_Binding::Wrap(aCx, this, aGivenProto);
|
2013-03-19 03:14:40 +04:00
|
|
|
}
|
|
|
|
|
2019-01-02 21:24:11 +03:00
|
|
|
SVGEnumMapping SVGFEColorMatrixElement::sTypeMap[] = {
|
2018-03-29 12:45:28 +03:00
|
|
|
{nsGkAtoms::matrix, SVG_FECOLORMATRIX_TYPE_MATRIX},
|
|
|
|
{nsGkAtoms::saturate, SVG_FECOLORMATRIX_TYPE_SATURATE},
|
|
|
|
{nsGkAtoms::hueRotate, SVG_FECOLORMATRIX_TYPE_HUE_ROTATE},
|
|
|
|
{nsGkAtoms::luminanceToAlpha, SVG_FECOLORMATRIX_TYPE_LUMINANCE_TO_ALPHA},
|
2013-03-19 03:14:40 +04:00
|
|
|
{nullptr, 0}};
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::EnumInfo SVGFEColorMatrixElement::sEnumInfo[1] = {
|
2013-03-19 03:14:40 +04:00
|
|
|
{nsGkAtoms::type, sTypeMap, SVG_FECOLORMATRIX_TYPE_MATRIX}};
|
2013-03-19 03:14:40 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::StringInfo SVGFEColorMatrixElement::sStringInfo[2] = {
|
2018-03-29 12:45:24 +03:00
|
|
|
{nsGkAtoms::result, kNameSpaceID_None, true},
|
|
|
|
{nsGkAtoms::in, kNameSpaceID_None, true}};
|
2013-03-19 03:14:40 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::NumberListInfo SVGFEColorMatrixElement::sNumberListInfo[1] = {
|
2018-03-29 12:45:24 +03:00
|
|
|
{nsGkAtoms::values}};
|
2013-03-19 03:14:40 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-05-30 05:58:49 +03:00
|
|
|
// nsINode methods
|
2013-03-19 03:14:40 +04:00
|
|
|
|
2013-03-19 03:14:40 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEColorMatrixElement)
|
2013-03-19 03:14:40 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> SVGFEColorMatrixElement::In1() {
|
2013-03-19 03:14:40 +04:00
|
|
|
return mStringAttributes[IN1].ToDOMAnimatedString(this);
|
2013-03-19 03:14:40 +04:00
|
|
|
}
|
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedEnumeration> SVGFEColorMatrixElement::Type() {
|
2013-03-19 03:14:40 +04:00
|
|
|
return mEnumAttributes[TYPE].ToDOMAnimatedEnum(this);
|
2013-03-19 03:14:40 +04:00
|
|
|
}
|
|
|
|
|
2013-03-19 03:14:40 +04:00
|
|
|
already_AddRefed<DOMSVGAnimatedNumberList> SVGFEColorMatrixElement::Values() {
|
|
|
|
return DOMSVGAnimatedNumberList::GetDOMWrapper(&mNumberListAttributes[VALUES],
|
|
|
|
this, VALUES);
|
2013-03-19 03:14:40 +04:00
|
|
|
}
|
|
|
|
|
2013-03-19 03:14:40 +04:00
|
|
|
void SVGFEColorMatrixElement::GetSourceImageNames(
|
2018-12-21 19:24:17 +03:00
|
|
|
nsTArray<SVGStringInfo>& aSources) {
|
|
|
|
aSources.AppendElement(SVGStringInfo(&mStringAttributes[IN1], this));
|
2013-03-19 03:14:40 +04:00
|
|
|
}
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
FilterPrimitiveDescription SVGFEColorMatrixElement::GetPrimitiveDescription(
|
|
|
|
nsSVGFilterInstance* 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
|
|
|
uint32_t type = mEnumAttributes[TYPE].GetAnimValue();
|
2013-03-19 03:14:40 +04:00
|
|
|
const SVGNumberList& values = mNumberListAttributes[VALUES].GetAnimValue();
|
|
|
|
|
2018-09-19 20:18:16 +03:00
|
|
|
ColorMatrixAttributes atts;
|
2013-03-19 03:14:40 +04:00
|
|
|
if (!mNumberListAttributes[VALUES].IsExplicitlySet() &&
|
2013-03-19 03:14:40 +04:00
|
|
|
(type == SVG_FECOLORMATRIX_TYPE_MATRIX ||
|
|
|
|
type == SVG_FECOLORMATRIX_TYPE_SATURATE ||
|
|
|
|
type == SVG_FECOLORMATRIX_TYPE_HUE_ROTATE)) {
|
2018-09-19 20:18:16 +03:00
|
|
|
atts.mType = (uint32_t)SVG_FECOLORMATRIX_TYPE_MATRIX;
|
2018-10-12 23:48:24 +03:00
|
|
|
static const float identityMatrix[] = {
|
|
|
|
// clang-format off
|
|
|
|
1, 0, 0, 0, 0,
|
2013-11-27 15:25:29 +04:00
|
|
|
0, 1, 0, 0, 0,
|
|
|
|
0, 0, 1, 0, 0,
|
2018-10-12 23:48:24 +03:00
|
|
|
0, 0, 0, 1, 0
|
|
|
|
// clang-format on
|
|
|
|
};
|
2018-09-19 20:18:16 +03:00
|
|
|
atts.mValues.AppendElements(identityMatrix, 20);
|
2013-11-27 15:25:29 +04:00
|
|
|
} else {
|
2018-09-19 20:18:16 +03:00
|
|
|
atts.mType = type;
|
2013-11-27 15:25:29 +04:00
|
|
|
if (values.Length()) {
|
2018-09-19 20:18:16 +03:00
|
|
|
atts.mValues.AppendElements(&values[0], values.Length());
|
2013-03-19 03:14:40 +04:00
|
|
|
}
|
|
|
|
}
|
2018-09-19 20:18:16 +03:00
|
|
|
|
2018-09-19 20:18:44 +03:00
|
|
|
return FilterPrimitiveDescription(AsVariant(std::move(atts)));
|
2013-03-19 03:14:40 +04:00
|
|
|
}
|
|
|
|
|
2013-03-19 03:14:40 +04:00
|
|
|
bool SVGFEColorMatrixElement::AttributeAffectsRendering(
|
2017-10-03 01:05:19 +03:00
|
|
|
int32_t aNameSpaceID, nsAtom* aAttribute) const {
|
2013-03-19 03:14:40 +04:00
|
|
|
return SVGFEColorMatrixElementBase::AttributeAffectsRendering(aNameSpaceID,
|
|
|
|
aAttribute) ||
|
2013-03-19 03:14:40 +04:00
|
|
|
(aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::in || aAttribute == nsGkAtoms::type ||
|
|
|
|
aAttribute == nsGkAtoms::values));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-12-21 11:58:14 +03:00
|
|
|
// SVGElement methods
|
2013-03-19 03:14:40 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::EnumAttributesInfo SVGFEColorMatrixElement::GetEnumInfo() {
|
2013-03-19 03:14:40 +04:00
|
|
|
return EnumAttributesInfo(mEnumAttributes, sEnumInfo, ArrayLength(sEnumInfo));
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::StringAttributesInfo SVGFEColorMatrixElement::GetStringInfo() {
|
2013-03-19 03:14:40 +04:00
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement::NumberListAttributesInfo
|
2013-03-19 03:14:40 +04:00
|
|
|
SVGFEColorMatrixElement::GetNumberListInfo() {
|
2013-03-19 03:14:40 +04:00
|
|
|
return NumberListAttributesInfo(mNumberListAttributes, sNumberListInfo,
|
|
|
|
ArrayLength(sNumberListInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|