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

Unified Diff: trunk/Source/core/platform/graphics/filters/FilterEffect.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
Index: trunk/Source/core/platform/graphics/filters/FilterEffect.h
===================================================================
--- trunk/Source/core/platform/graphics/filters/FilterEffect.h (revision 150368)
+++ trunk/Source/core/platform/graphics/filters/FilterEffect.h (working copy)
@@ -104,19 +104,6 @@
virtual void determineAbsolutePaintRect();
- // Mapping a rect forwards determines which which destination pixels a
- // given source rect would affect. Mapping a rect backwards determines
- // which pixels from the source rect would be required to fill a given
- // destination rect. Note that these are not necessarily the inverse of
- // each other. For example, for FEGaussianBlur, they are the same
- // transformation.
- virtual FloatRect mapRect(const FloatRect& rect, bool forward = true) { return rect; }
- FloatRect mapRectRecursive(const FloatRect&);
-
- // This is a recursive version of a backwards mapRect(), which also takes
- // into account the filter primitive subregion of each effect.
- FloatRect getSourceRect(const FloatRect& destRect, const FloatRect& clipRect);
-
virtual FilterEffectType filterEffectType() const { return FilterEffectTypeUnknown; }
virtual TextStream& externalRepresentation(TextStream&, int indention = 0) const;
@@ -154,8 +141,6 @@
virtual void transformResultColorSpace(FilterEffect* in, const int) { in->transformResultColorSpace(m_operatingColorSpace); }
void transformResultColorSpace(ColorSpace);
- FloatRect determineFilterPrimitiveSubregion();
-
protected:
FilterEffect(Filter*);
« no previous file with comments | « trunk/Source/core/platform/graphics/filters/Filter.h ('k') | trunk/Source/core/platform/graphics/filters/FilterEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698