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/SVGFEDiffuseLightingElement.h"
8 : #include "mozilla/dom/SVGFEDiffuseLightingElementBinding.h"
9 : #include "nsSVGUtils.h"
10 : #include "nsSVGFilterInstance.h"
11 :
12 0 : NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(FEDiffuseLighting)
13 :
14 : using namespace mozilla::gfx;
15 :
16 : namespace mozilla {
17 : namespace dom {
18 :
19 : JSObject*
20 0 : SVGFEDiffuseLightingElement::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
21 : {
22 0 : return SVGFEDiffuseLightingElementBinding::Wrap(aCx, this, aGivenProto);
23 : }
24 :
25 : //----------------------------------------------------------------------
26 : // nsIDOMNode methods
27 :
28 0 : NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEDiffuseLightingElement)
29 :
30 : //----------------------------------------------------------------------
31 :
32 : already_AddRefed<SVGAnimatedString>
33 0 : SVGFEDiffuseLightingElement::In1()
34 : {
35 0 : return mStringAttributes[IN1].ToDOMAnimatedString(this);
36 : }
37 :
38 : already_AddRefed<SVGAnimatedNumber>
39 0 : SVGFEDiffuseLightingElement::SurfaceScale()
40 : {
41 0 : return mNumberAttributes[SURFACE_SCALE].ToDOMAnimatedNumber(this);
42 : }
43 :
44 : already_AddRefed<SVGAnimatedNumber>
45 0 : SVGFEDiffuseLightingElement::DiffuseConstant()
46 : {
47 0 : return mNumberAttributes[DIFFUSE_CONSTANT].ToDOMAnimatedNumber(this);
48 : }
49 :
50 : already_AddRefed<SVGAnimatedNumber>
51 0 : SVGFEDiffuseLightingElement::KernelUnitLengthX()
52 : {
53 : return mNumberPairAttributes[KERNEL_UNIT_LENGTH].ToDOMAnimatedNumber(
54 0 : nsSVGNumberPair::eFirst, this);
55 : }
56 :
57 : already_AddRefed<SVGAnimatedNumber>
58 0 : SVGFEDiffuseLightingElement::KernelUnitLengthY()
59 : {
60 : return mNumberPairAttributes[KERNEL_UNIT_LENGTH].ToDOMAnimatedNumber(
61 0 : nsSVGNumberPair::eSecond, this);
62 : }
63 :
64 : FilterPrimitiveDescription
65 0 : SVGFEDiffuseLightingElement::GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
66 : const IntRect& aFilterSubregion,
67 : const nsTArray<bool>& aInputsAreTainted,
68 : nsTArray<RefPtr<SourceSurface>>& aInputImages)
69 : {
70 0 : float diffuseConstant = mNumberAttributes[DIFFUSE_CONSTANT].GetAnimValue();
71 :
72 0 : FilterPrimitiveDescription descr(PrimitiveType::DiffuseLighting);
73 0 : descr.Attributes().Set(eDiffuseLightingDiffuseConstant, diffuseConstant);
74 0 : return AddLightingAttributes(descr, aInstance);
75 : }
76 :
77 : bool
78 0 : SVGFEDiffuseLightingElement::AttributeAffectsRendering(int32_t aNameSpaceID,
79 : nsIAtom* aAttribute) const
80 : {
81 0 : return SVGFEDiffuseLightingElementBase::AttributeAffectsRendering(aNameSpaceID, aAttribute) ||
82 0 : (aNameSpaceID == kNameSpaceID_None &&
83 0 : aAttribute == nsGkAtoms::diffuseConstant);
84 : }
85 :
86 : } // namespace dom
87 : } // namespace mozilla
|