| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 { | 50 { |
| 51 if (attrName == SVGNames::inAttr) { | 51 if (attrName == SVGNames::inAttr) { |
| 52 SVGElement::InvalidationGuard invalidationGuard(this); | 52 SVGElement::InvalidationGuard invalidationGuard(this); |
| 53 invalidate(); | 53 invalidate(); |
| 54 return; | 54 return; |
| 55 } | 55 } |
| 56 | 56 |
| 57 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); | 57 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); |
| 58 } | 58 } |
| 59 | 59 |
| 60 PassRefPtrWillBeRawPtr<FilterEffect> SVGFEComponentTransferElement::build(SVGFil
terBuilder* filterBuilder, Filter* filter) | 60 RawPtr<FilterEffect> SVGFEComponentTransferElement::build(SVGFilterBuilder* filt
erBuilder, Filter* filter) |
| 61 { | 61 { |
| 62 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->curr
entValue()->value())); | 62 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->curr
entValue()->value())); |
| 63 ASSERT(input1); | 63 ASSERT(input1); |
| 64 | 64 |
| 65 ComponentTransferFunction red; | 65 ComponentTransferFunction red; |
| 66 ComponentTransferFunction green; | 66 ComponentTransferFunction green; |
| 67 ComponentTransferFunction blue; | 67 ComponentTransferFunction blue; |
| 68 ComponentTransferFunction alpha; | 68 ComponentTransferFunction alpha; |
| 69 | 69 |
| 70 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element
; element = Traversal<SVGElement>::nextSibling(*element)) { | 70 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element
; element = Traversal<SVGElement>::nextSibling(*element)) { |
| 71 if (isSVGFEFuncRElement(*element)) | 71 if (isSVGFEFuncRElement(*element)) |
| 72 red = toSVGFEFuncRElement(*element).transferFunction(); | 72 red = toSVGFEFuncRElement(*element).transferFunction(); |
| 73 else if (isSVGFEFuncGElement(*element)) | 73 else if (isSVGFEFuncGElement(*element)) |
| 74 green = toSVGFEFuncGElement(*element).transferFunction(); | 74 green = toSVGFEFuncGElement(*element).transferFunction(); |
| 75 else if (isSVGFEFuncBElement(*element)) | 75 else if (isSVGFEFuncBElement(*element)) |
| 76 blue = toSVGFEFuncBElement(*element).transferFunction(); | 76 blue = toSVGFEFuncBElement(*element).transferFunction(); |
| 77 else if (isSVGFEFuncAElement(*element)) | 77 else if (isSVGFEFuncAElement(*element)) |
| 78 alpha = toSVGFEFuncAElement(*element).transferFunction(); | 78 alpha = toSVGFEFuncAElement(*element).transferFunction(); |
| 79 } | 79 } |
| 80 | 80 |
| 81 RefPtrWillBeRawPtr<FilterEffect> effect = FEComponentTransfer::create(filter
, red, green, blue, alpha); | 81 RawPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green
, blue, alpha); |
| 82 effect->inputEffects().append(input1); | 82 effect->inputEffects().append(input1); |
| 83 return effect.release(); | 83 return effect.release(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 } // namespace blink | 86 } // namespace blink |
| OLD | NEW |