Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: Source/core/svg/graphics/filters/SVGFilterBuilder.cpp

Issue 1056353003: Derive the SourceAlpha filter input from SourceGraphic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details. 12 * Library General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
18 */ 18 */
19 19
20 #include "config.h" 20 #include "config.h"
21 #include "core/svg/graphics/filters/SVGFilterBuilder.h" 21 #include "core/svg/graphics/filters/SVGFilterBuilder.h"
22 22
23 #include "platform/graphics/filters/SourceAlpha.h" 23 #include "platform/graphics/filters/SourceAlpha.h"
24 #include "platform/graphics/filters/SourceGraphic.h" 24 #include "platform/graphics/filters/SourceGraphic.h"
25 25
26 namespace blink { 26 namespace blink {
27 27
28 SVGFilterBuilder::SVGFilterBuilder(PassRefPtrWillBeRawPtr<FilterEffect> sourceGr aphic, PassRefPtrWillBeRawPtr<FilterEffect> sourceAlpha) 28 SVGFilterBuilder::SVGFilterBuilder(PassRefPtrWillBeRawPtr<FilterEffect> prpSourc eGraphic)
29 { 29 {
30 RefPtrWillBeRawPtr<FilterEffect> sourceGraphic = prpSourceGraphic;
Stephen White 2015/04/20 17:04:49 Nit: Blink coding style prefers no abbreviations.
fs 2015/04/21 10:29:20 Done.
30 m_builtinEffects.add(SourceGraphic::effectName(), sourceGraphic); 31 m_builtinEffects.add(SourceGraphic::effectName(), sourceGraphic);
31 m_builtinEffects.add(SourceAlpha::effectName(), sourceAlpha); 32 m_builtinEffects.add(SourceAlpha::effectName(), SourceAlpha::create(sourceGr aphic.get()));
32 addBuiltinEffects(); 33 addBuiltinEffects();
33 } 34 }
34 35
35 DEFINE_TRACE(SVGFilterBuilder) 36 DEFINE_TRACE(SVGFilterBuilder)
36 { 37 {
37 #if ENABLE(OILPAN) 38 #if ENABLE(OILPAN)
38 visitor->trace(m_builtinEffects); 39 visitor->trace(m_builtinEffects);
39 visitor->trace(m_namedEffects); 40 visitor->trace(m_namedEffects);
40 visitor->trace(m_effectRenderer); 41 visitor->trace(m_effectRenderer);
41 visitor->trace(m_effectReferences); 42 visitor->trace(m_effectReferences);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 return; 106 return;
106 107
107 effect->clearResult(); 108 effect->clearResult();
108 109
109 FilterEffectSet& effectReferences = this->effectReferences(effect); 110 FilterEffectSet& effectReferences = this->effectReferences(effect);
110 for (FilterEffect* effectReference : effectReferences) 111 for (FilterEffect* effectReference : effectReferences)
111 clearResultsRecursive(effectReference); 112 clearResultsRecursive(effectReference);
112 } 113 }
113 114
114 } // namespace blink 115 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilterBuilder.h ('k') | Source/platform/graphics/filters/SourceAlpha.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698