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

Unified Diff: trunk/Source/core/svg/graphics/filters/SVGFilter.h

Issue 14852010: Revert 150342 "Implement filter primitive subregion for referenc..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/Source/core/svg/SVGFilterElement.h ('k') | trunk/Source/core/svg/graphics/filters/SVGFilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/Source/core/svg/graphics/filters/SVGFilter.h
===================================================================
--- trunk/Source/core/svg/graphics/filters/SVGFilter.h (revision 150368)
+++ trunk/Source/core/svg/graphics/filters/SVGFilter.h (working copy)
@@ -38,6 +38,9 @@
public:
static PassRefPtr<SVGFilter> create(const AffineTransform&, const FloatRect&, const FloatRect&, const FloatRect&, bool);
+ FloatRect filterRegionInUserSpace() const { return m_filterRegion; }
+ virtual FloatRect filterRegion() const { return m_absoluteFilterRegion; }
+
virtual float applyHorizontalScale(float value) const;
virtual float applyVerticalScale(float value) const;
@@ -49,6 +52,8 @@
FloatRect m_absoluteSourceDrawingRegion;
FloatRect m_targetBoundingBox;
+ FloatRect m_absoluteFilterRegion;
+ FloatRect m_filterRegion;
bool m_effectBBoxMode;
};
« no previous file with comments | « trunk/Source/core/svg/SVGFilterElement.h ('k') | trunk/Source/core/svg/graphics/filters/SVGFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698