| 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 13 matching lines...) Expand all Loading... |
| 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 | 32 // Animated property definitions |
| 33 | 33 |
| 34 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFETileElement) | |
| 35 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes) | |
| 36 END_REGISTER_ANIMATED_PROPERTIES | |
| 37 | 34 |
| 38 inline SVGFETileElement::SVGFETileElement(Document& document) | 35 inline SVGFETileElement::SVGFETileElement(Document& document) |
| 39 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) | 36 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) |
| 40 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 37 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
| 41 { | 38 { |
| 42 ScriptWrappable::init(this); | 39 ScriptWrappable::init(this); |
| 43 addToPropertyMap(m_in1); | 40 addToPropertyMap(m_in1); |
| 44 } | 41 } |
| 45 | 42 |
| 46 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document) | 43 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document) |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 93 |
| 97 if (!input1) | 94 if (!input1) |
| 98 return nullptr; | 95 return nullptr; |
| 99 | 96 |
| 100 RefPtr<FilterEffect> effect = FETile::create(filter); | 97 RefPtr<FilterEffect> effect = FETile::create(filter); |
| 101 effect->inputEffects().append(input1); | 98 effect->inputEffects().append(input1); |
| 102 return effect.release(); | 99 return effect.release(); |
| 103 } | 100 } |
| 104 | 101 |
| 105 } | 102 } |
| OLD | NEW |