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

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

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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 * 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 * Copyright (C) 2013 Google Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * 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.
10 * 10 *
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 FloatPoint3D SVGFilter::resolve3dPoint(const FloatPoint3D& point) const 51 FloatPoint3D SVGFilter::resolve3dPoint(const FloatPoint3D& point) const
52 { 52 {
53 if (!m_effectBBoxMode) 53 if (!m_effectBBoxMode)
54 return point; 54 return point;
55 return FloatPoint3D(point.x() * m_targetBoundingBox.width() + m_targetBoundi ngBox.x(), 55 return FloatPoint3D(point.x() * m_targetBoundingBox.width() + m_targetBoundi ngBox.x(),
56 point.y() * m_targetBoundingBox.height() + m_targetBoundingBox.y(), 56 point.y() * m_targetBoundingBox.height() + m_targetBoundingBox.y(),
57 point.z() * sqrtf(m_targetBoundingBox.size().diagonalLengthSquared() / 2 )); 57 point.z() * sqrtf(m_targetBoundingBox.size().diagonalLengthSquared() / 2 ));
58 } 58 }
59 59
60 PassRefPtr<SVGFilter> SVGFilter::create(const IntRect& absoluteSourceDrawingRegi on, const FloatRect& targetBoundingBox, const FloatRect& filterRegion, bool effe ctBBoxMode) 60 PassRefPtrWillBeRawPtr<SVGFilter> SVGFilter::create(const IntRect& absoluteSourc eDrawingRegion, const FloatRect& targetBoundingBox, const FloatRect& filterRegio n, bool effectBBoxMode)
61 { 61 {
62 return adoptRef(new SVGFilter(absoluteSourceDrawingRegion, targetBoundingBox , filterRegion, effectBBoxMode)); 62 return adoptRefWillBeNoop(new SVGFilter(absoluteSourceDrawingRegion, targetB oundingBox, filterRegion, effectBBoxMode));
63 } 63 }
64 64
65 } // namespace blink 65 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilter.h ('k') | Source/core/svg/graphics/filters/SVGFilterBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698