| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 SVGAnimatedInteger* orderX() { return m_order->firstInteger(); } | 51 SVGAnimatedInteger* orderX() { return m_order->firstInteger(); } |
| 52 SVGAnimatedInteger* orderY() { return m_order->secondInteger(); } | 52 SVGAnimatedInteger* orderY() { return m_order->secondInteger(); } |
| 53 SVGAnimatedInteger* targetX() { return m_targetX.get(); } | 53 SVGAnimatedInteger* targetX() { return m_targetX.get(); } |
| 54 SVGAnimatedInteger* targetY() { return m_targetY.get(); } | 54 SVGAnimatedInteger* targetY() { return m_targetY.get(); } |
| 55 | 55 |
| 56 DECLARE_VIRTUAL_TRACE(); | 56 DECLARE_VIRTUAL_TRACE(); |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 explicit SVGFEConvolveMatrixElement(Document&); | 59 explicit SVGFEConvolveMatrixElement(Document&); |
| 60 | 60 |
| 61 bool isSupportedAttribute(const QualifiedName&); | |
| 62 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) o
verride; | 61 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) o
verride; |
| 63 virtual void svgAttributeChanged(const QualifiedName&) override; | 62 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 64 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter
*) override; | 63 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter
*) override; |
| 65 | 64 |
| 66 RefPtrWillBeMember<SVGAnimatedNumber> m_bias; | 65 RefPtrWillBeMember<SVGAnimatedNumber> m_bias; |
| 67 RefPtrWillBeMember<SVGAnimatedNumber> m_divisor; | 66 RefPtrWillBeMember<SVGAnimatedNumber> m_divisor; |
| 68 RefPtrWillBeMember<SVGAnimatedString> m_in1; | 67 RefPtrWillBeMember<SVGAnimatedString> m_in1; |
| 69 RefPtrWillBeMember<SVGAnimatedEnumeration<EdgeModeType>> m_edgeMode; | 68 RefPtrWillBeMember<SVGAnimatedEnumeration<EdgeModeType>> m_edgeMode; |
| 70 RefPtrWillBeMember<SVGAnimatedNumberList> m_kernelMatrix; | 69 RefPtrWillBeMember<SVGAnimatedNumberList> m_kernelMatrix; |
| 71 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength; | 70 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength; |
| 72 RefPtrWillBeMember<SVGAnimatedIntegerOptionalInteger> m_order; | 71 RefPtrWillBeMember<SVGAnimatedIntegerOptionalInteger> m_order; |
| 73 RefPtrWillBeMember<SVGAnimatedBoolean> m_preserveAlpha; | 72 RefPtrWillBeMember<SVGAnimatedBoolean> m_preserveAlpha; |
| 74 RefPtrWillBeMember<SVGAnimatedInteger> m_targetX; | 73 RefPtrWillBeMember<SVGAnimatedInteger> m_targetX; |
| 75 RefPtrWillBeMember<SVGAnimatedInteger> m_targetY; | 74 RefPtrWillBeMember<SVGAnimatedInteger> m_targetY; |
| 76 }; | 75 }; |
| 77 | 76 |
| 78 } // namespace blink | 77 } // namespace blink |
| 79 | 78 |
| 80 #endif // SVGFEConvolveMatrixElement_h | 79 #endif // SVGFEConvolveMatrixElement_h |
| OLD | NEW |