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/SVGFETileElement.h"
8 : #include "mozilla/dom/SVGFETileElementBinding.h"
9 : #include "nsSVGFilterInstance.h"
10 :
11 0 : NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(FETile)
12 :
13 : using namespace mozilla::gfx;
14 :
15 : namespace mozilla {
16 : namespace dom {
17 :
18 : JSObject*
19 0 : SVGFETileElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
20 : {
21 0 : return SVGFETileElementBinding::Wrap(aCx, this, aGivenProto);
22 : }
23 :
24 : nsSVGElement::StringInfo SVGFETileElement::sStringInfo[2] =
25 : {
26 : { &nsGkAtoms::result, kNameSpaceID_None, true },
27 : { &nsGkAtoms::in, kNameSpaceID_None, true }
28 : };
29 :
30 : //----------------------------------------------------------------------
31 : // nsIDOMNode methods
32 :
33 :
34 0 : NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFETileElement)
35 :
36 : already_AddRefed<SVGAnimatedString>
37 0 : SVGFETileElement::In1()
38 : {
39 0 : return mStringAttributes[IN1].ToDOMAnimatedString(this);
40 : }
41 :
42 : void
43 0 : SVGFETileElement::GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources)
44 : {
45 0 : aSources.AppendElement(nsSVGStringInfo(&mStringAttributes[IN1], this));
46 0 : }
47 :
48 : //----------------------------------------------------------------------
49 : // nsSVGElement methods
50 :
51 : FilterPrimitiveDescription
52 0 : SVGFETileElement::GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
53 : const IntRect& aFilterSubregion,
54 : const nsTArray<bool>& aInputsAreTainted,
55 : nsTArray<RefPtr<SourceSurface>>& aInputImages)
56 : {
57 0 : return FilterPrimitiveDescription(PrimitiveType::Tile);
58 : }
59 :
60 : bool
61 0 : SVGFETileElement::AttributeAffectsRendering(int32_t aNameSpaceID,
62 : nsIAtom* aAttribute) const
63 : {
64 0 : return SVGFETileElementBase::AttributeAffectsRendering(aNameSpaceID,
65 0 : aAttribute) ||
66 0 : (aNameSpaceID == kNameSpaceID_None && aAttribute == nsGkAtoms::in);
67 : }
68 :
69 : //----------------------------------------------------------------------
70 : // nsSVGElement methods
71 :
72 : nsSVGElement::StringAttributesInfo
73 0 : SVGFETileElement::GetStringInfo()
74 : {
75 : return StringAttributesInfo(mStringAttributes, sStringInfo,
76 0 : ArrayLength(sStringInfo));
77 : }
78 :
79 : } // namespace dom
80 : } // namespace mozilla
|