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

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

Issue 14701012: Refactor m_absoluteTransform out of SVGFilter and into base class. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix copyrights Created 7 years, 7 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
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilter.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 3 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
4 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 5 *
5 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
9 * 10 *
10 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 14 * Library General Public License for more details.
14 * 15 *
15 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
19 */ 20 */
20 21
21 #include "config.h" 22 #include "config.h"
22 23
23 #if ENABLE(SVG) 24 #if ENABLE(SVG)
24 #include "core/svg/graphics/filters/SVGFilter.h" 25 #include "core/svg/graphics/filters/SVGFilter.h"
25 26
26 namespace WebCore { 27 namespace WebCore {
27 28
28 SVGFilter::SVGFilter(const AffineTransform& absoluteTransform, const FloatRect& absoluteSourceDrawingRegion, const FloatRect& targetBoundingBox, const FloatRect & filterRegion, bool effectBBoxMode) 29 SVGFilter::SVGFilter(const AffineTransform& absoluteTransform, const FloatRect& absoluteSourceDrawingRegion, const FloatRect& targetBoundingBox, const FloatRect & filterRegion, bool effectBBoxMode)
29 : Filter() 30 : Filter(absoluteTransform)
30 , m_absoluteTransform(absoluteTransform)
31 , m_absoluteSourceDrawingRegion(absoluteSourceDrawingRegion) 31 , m_absoluteSourceDrawingRegion(absoluteSourceDrawingRegion)
32 , m_targetBoundingBox(targetBoundingBox) 32 , m_targetBoundingBox(targetBoundingBox)
33 , m_filterRegion(filterRegion) 33 , m_filterRegion(filterRegion)
34 , m_effectBBoxMode(effectBBoxMode) 34 , m_effectBBoxMode(effectBBoxMode)
35 { 35 {
36 m_absoluteFilterRegion = absoluteTransform.mapRect(filterRegion); 36 m_absoluteFilterRegion = absoluteTransform.mapRect(filterRegion);
37 } 37 }
38 38
39 float SVGFilter::applyHorizontalScale(float value) const 39 float SVGFilter::applyHorizontalScale(float value) const
40 { 40 {
(...skipping 10 matching lines...) Expand all
51 } 51 }
52 52
53 PassRefPtr<SVGFilter> SVGFilter::create(const AffineTransform& absoluteTransform , const FloatRect& absoluteSourceDrawingRegion, const FloatRect& targetBoundingB ox, const FloatRect& filterRegion, bool effectBBoxMode) 53 PassRefPtr<SVGFilter> SVGFilter::create(const AffineTransform& absoluteTransform , const FloatRect& absoluteSourceDrawingRegion, const FloatRect& targetBoundingB ox, const FloatRect& filterRegion, bool effectBBoxMode)
54 { 54 {
55 return adoptRef(new SVGFilter(absoluteTransform, absoluteSourceDrawingRegion , targetBoundingBox, filterRegion, effectBBoxMode)); 55 return adoptRef(new SVGFilter(absoluteTransform, absoluteSourceDrawingRegion , targetBoundingBox, filterRegion, effectBBoxMode));
56 } 56 }
57 57
58 } // namespace WebCore 58 } // namespace WebCore
59 59
60 #endif // ENABLE(SVG) 60 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698