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

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

Issue 337903003: Map light-source oBB-relative coordinates to the user-space of the filter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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') | Source/platform/graphics/filters/Filter.h » ('j') | 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 * 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 30 matching lines...) Expand all
41 return Filter::applyHorizontalScale(value); 41 return Filter::applyHorizontalScale(value);
42 } 42 }
43 43
44 float SVGFilter::applyVerticalScale(float value) const 44 float SVGFilter::applyVerticalScale(float value) const
45 { 45 {
46 if (m_effectBBoxMode) 46 if (m_effectBBoxMode)
47 value *= m_targetBoundingBox.height(); 47 value *= m_targetBoundingBox.height();
48 return Filter::applyVerticalScale(value); 48 return Filter::applyVerticalScale(value);
49 } 49 }
50 50
51 FloatPoint3D SVGFilter::resolve3dPoint(const FloatPoint3D& point) const
52 {
53 if (!m_effectBBoxMode)
54 return point;
55 return FloatPoint3D(point.x() * m_targetBoundingBox.width() + m_targetBoundi ngBox.x(),
56 point.y() * m_targetBoundingBox.height() + m_targetBoundingBox.y(),
57 point.z() * sqrtf(m_targetBoundingBox.size().diagonalLengthSquared() / 2 ));
Stephen White 2014/06/18 17:21:27 Nit: the Z-scaling for CTM in Skia and Blink use t
58 }
59
51 PassRefPtr<SVGFilter> SVGFilter::create(const AffineTransform& absoluteTransform , const IntRect& absoluteSourceDrawingRegion, const FloatRect& targetBoundingBox , const FloatRect& filterRegion, bool effectBBoxMode) 60 PassRefPtr<SVGFilter> SVGFilter::create(const AffineTransform& absoluteTransform , const IntRect& absoluteSourceDrawingRegion, const FloatRect& targetBoundingBox , const FloatRect& filterRegion, bool effectBBoxMode)
52 { 61 {
53 return adoptRef(new SVGFilter(absoluteTransform, absoluteSourceDrawingRegion , targetBoundingBox, filterRegion, effectBBoxMode)); 62 return adoptRef(new SVGFilter(absoluteTransform, absoluteSourceDrawingRegion , targetBoundingBox, filterRegion, effectBBoxMode));
54 } 63 }
55 64
56 } // namespace WebCore 65 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilter.h ('k') | Source/platform/graphics/filters/Filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698