OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 #include "core/svg/SVGFETileElement.h" | 23 #include "core/svg/SVGFETileElement.h" |
24 | 24 |
25 #include "SVGNames.h" | 25 #include "SVGNames.h" |
26 #include "platform/graphics/filters/FilterEffect.h" | 26 #include "platform/graphics/filters/FilterEffect.h" |
27 #include "core/svg/SVGElementInstance.h" | 27 #include "core/svg/SVGElementInstance.h" |
28 #include "core/svg/graphics/filters/SVGFilterBuilder.h" | 28 #include "core/svg/graphics/filters/SVGFilterBuilder.h" |
29 | 29 |
30 namespace WebCore { | 30 namespace WebCore { |
31 | 31 |
32 // Animated property definitions | |
33 | |
34 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFETileElement) | |
35 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes) | |
36 END_REGISTER_ANIMATED_PROPERTIES | |
37 | |
38 inline SVGFETileElement::SVGFETileElement(Document& document) | 32 inline SVGFETileElement::SVGFETileElement(Document& document) |
39 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) | 33 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) |
40 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 34 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
41 { | 35 { |
42 ScriptWrappable::init(this); | 36 ScriptWrappable::init(this); |
43 addToPropertyMap(m_in1); | 37 addToPropertyMap(m_in1); |
44 } | 38 } |
45 | 39 |
46 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document) | 40 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document) |
47 { | 41 { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 90 |
97 if (!input1) | 91 if (!input1) |
98 return nullptr; | 92 return nullptr; |
99 | 93 |
100 RefPtr<FilterEffect> effect = FETile::create(filter); | 94 RefPtr<FilterEffect> effect = FETile::create(filter); |
101 effect->inputEffects().append(input1); | 95 effect->inputEffects().append(input1); |
102 return effect.release(); | 96 return effect.release(); |
103 } | 97 } |
104 | 98 |
105 } | 99 } |
OLD | NEW |