Line data Source code
1 : /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 : /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 : /* This Source Code Form is subject to the terms of the Mozilla Public
4 : * License, v. 2.0. If a copy of the MPL was not distributed with this
5 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 :
7 : #include "mozilla/dom/SVGFEMorphologyElement.h"
8 : #include "mozilla/dom/SVGFEMorphologyElementBinding.h"
9 : #include "nsSVGFilterInstance.h"
10 :
11 0 : NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(FEMorphology)
12 :
13 : using namespace mozilla::gfx;
14 :
15 : namespace mozilla {
16 : namespace dom {
17 :
18 : JSObject*
19 0 : SVGFEMorphologyElement::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
20 : {
21 0 : return SVGFEMorphologyElementBinding::Wrap(aCx, this, aGivenProto);
22 : }
23 :
24 : nsSVGElement::NumberPairInfo SVGFEMorphologyElement::sNumberPairInfo[1] =
25 : {
26 : { &nsGkAtoms::radius, 0, 0 }
27 : };
28 :
29 : nsSVGEnumMapping SVGFEMorphologyElement::sOperatorMap[] = {
30 : {&nsGkAtoms::erode, SVG_OPERATOR_ERODE},
31 : {&nsGkAtoms::dilate, SVG_OPERATOR_DILATE},
32 : {nullptr, 0}
33 : };
34 :
35 : nsSVGElement::EnumInfo SVGFEMorphologyElement::sEnumInfo[1] =
36 : {
37 : { &nsGkAtoms::_operator,
38 : sOperatorMap,
39 : SVG_OPERATOR_ERODE
40 : }
41 : };
42 :
43 : nsSVGElement::StringInfo SVGFEMorphologyElement::sStringInfo[2] =
44 : {
45 : { &nsGkAtoms::result, kNameSpaceID_None, true },
46 : { &nsGkAtoms::in, kNameSpaceID_None, true }
47 : };
48 :
49 : //----------------------------------------------------------------------
50 : // nsIDOMNode methods
51 :
52 :
53 0 : NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEMorphologyElement)
54 :
55 :
56 : //----------------------------------------------------------------------
57 : // SVGFEMorphologyElement methods
58 :
59 : already_AddRefed<SVGAnimatedString>
60 0 : SVGFEMorphologyElement::In1()
61 : {
62 0 : return mStringAttributes[IN1].ToDOMAnimatedString(this);
63 : }
64 :
65 : already_AddRefed<SVGAnimatedEnumeration>
66 0 : SVGFEMorphologyElement::Operator()
67 : {
68 0 : return mEnumAttributes[OPERATOR].ToDOMAnimatedEnum(this);
69 : }
70 :
71 : already_AddRefed<SVGAnimatedNumber>
72 0 : SVGFEMorphologyElement::RadiusX()
73 : {
74 0 : return mNumberPairAttributes[RADIUS].ToDOMAnimatedNumber(nsSVGNumberPair::eFirst, this);
75 : }
76 :
77 : already_AddRefed<SVGAnimatedNumber>
78 0 : SVGFEMorphologyElement::RadiusY()
79 : {
80 0 : return mNumberPairAttributes[RADIUS].ToDOMAnimatedNumber(nsSVGNumberPair::eSecond, this);
81 : }
82 :
83 : void
84 0 : SVGFEMorphologyElement::SetRadius(float rx, float ry)
85 : {
86 0 : mNumberPairAttributes[RADIUS].SetBaseValues(rx, ry, this);
87 0 : }
88 :
89 : void
90 0 : SVGFEMorphologyElement::GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources)
91 : {
92 0 : aSources.AppendElement(nsSVGStringInfo(&mStringAttributes[IN1], this));
93 0 : }
94 :
95 : #define MORPHOLOGY_EPSILON 0.0001
96 :
97 : void
98 0 : SVGFEMorphologyElement::GetRXY(int32_t *aRX, int32_t *aRY,
99 : const nsSVGFilterInstance& aInstance)
100 : {
101 : // Subtract an epsilon here because we don't want a value that's just
102 : // slightly larger than an integer to round up to the next integer; it's
103 : // probably meant to be the integer it's close to, modulo machine precision
104 : // issues.
105 0 : *aRX = NSToIntCeil(aInstance.GetPrimitiveNumber(SVGContentUtils::X,
106 0 : &mNumberPairAttributes[RADIUS],
107 0 : nsSVGNumberPair::eFirst) -
108 : MORPHOLOGY_EPSILON);
109 0 : *aRY = NSToIntCeil(aInstance.GetPrimitiveNumber(SVGContentUtils::Y,
110 0 : &mNumberPairAttributes[RADIUS],
111 0 : nsSVGNumberPair::eSecond) -
112 : MORPHOLOGY_EPSILON);
113 0 : }
114 :
115 : FilterPrimitiveDescription
116 0 : SVGFEMorphologyElement::GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
117 : const IntRect& aFilterSubregion,
118 : const nsTArray<bool>& aInputsAreTainted,
119 : nsTArray<RefPtr<SourceSurface>>& aInputImages)
120 : {
121 : int32_t rx, ry;
122 0 : GetRXY(&rx, &ry, *aInstance);
123 0 : FilterPrimitiveDescription descr(PrimitiveType::Morphology);
124 0 : descr.Attributes().Set(eMorphologyRadii, Size(rx, ry));
125 0 : descr.Attributes().Set(eMorphologyOperator,
126 0 : (uint32_t)mEnumAttributes[OPERATOR].GetAnimValue());
127 0 : return descr;
128 : }
129 :
130 : bool
131 0 : SVGFEMorphologyElement::AttributeAffectsRendering(int32_t aNameSpaceID,
132 : nsIAtom* aAttribute) const
133 : {
134 0 : return SVGFEMorphologyElementBase::AttributeAffectsRendering(aNameSpaceID, aAttribute) ||
135 0 : (aNameSpaceID == kNameSpaceID_None &&
136 0 : (aAttribute == nsGkAtoms::in ||
137 0 : aAttribute == nsGkAtoms::radius ||
138 0 : aAttribute == nsGkAtoms::_operator));
139 : }
140 :
141 : //----------------------------------------------------------------------
142 : // nsSVGElement methods
143 :
144 : nsSVGElement::NumberPairAttributesInfo
145 0 : SVGFEMorphologyElement::GetNumberPairInfo()
146 : {
147 : return NumberPairAttributesInfo(mNumberPairAttributes, sNumberPairInfo,
148 0 : ArrayLength(sNumberPairInfo));
149 : }
150 :
151 : nsSVGElement::EnumAttributesInfo
152 0 : SVGFEMorphologyElement::GetEnumInfo()
153 : {
154 : return EnumAttributesInfo(mEnumAttributes, sEnumInfo,
155 0 : ArrayLength(sEnumInfo));
156 : }
157 :
158 : nsSVGElement::StringAttributesInfo
159 0 : SVGFEMorphologyElement::GetStringInfo()
160 : {
161 : return StringAttributesInfo(mStringAttributes, sStringInfo,
162 0 : ArrayLength(sStringInfo));
163 : }
164 :
165 : } // namespace dom
166 : } // namespace mozilla
|