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

Unified Diff: Source/core/rendering/svg/RenderSVGResourceFilter.h

Issue 500233002: First pass at ripping out non-deferred SVG filter path. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Nuke more code Created 6 years, 3 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 | « no previous file | Source/core/rendering/svg/RenderSVGResourceFilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/RenderSVGResourceFilter.h
diff --git a/Source/core/rendering/svg/RenderSVGResourceFilter.h b/Source/core/rendering/svg/RenderSVGResourceFilter.h
index e9c49d2305447a101102c17077e0c05b19e844a3..e8402ed2f78c14fa9e05cc4ef1d8da188f814a8a 100644
--- a/Source/core/rendering/svg/RenderSVGResourceFilter.h
+++ b/Source/core/rendering/svg/RenderSVGResourceFilter.h
@@ -34,22 +34,17 @@ namespace blink {
struct FilterData {
WTF_MAKE_FAST_ALLOCATED;
public:
- enum FilterDataState { PaintingSource, Applying, Built, CycleDetected, MarkedForRemoval };
+ enum FilterDataState { PaintingSource, Applying, Built, CycleDetected };
FilterData()
- : savedContext(0)
- , state(PaintingSource)
+ : state(PaintingSource)
{
}
RefPtr<SVGFilter> filter;
RefPtr<SVGFilterBuilder> builder;
- OwnPtr<ImageBuffer> sourceGraphicBuffer;
- GraphicsContext* savedContext;
- AffineTransform shearFreeAbsoluteTransform;
FloatRect boundaries;
FloatRect drawingRegion;
- FloatSize scale;
FilterDataState state;
};
@@ -86,8 +81,6 @@ public:
FloatRect drawingRegion(RenderObject*) const;
private:
- void adjustScaleForMaximumImageSize(const FloatSize&, FloatSize&);
-
typedef HashMap<RenderObject*, OwnPtr<FilterData> > FilterMap;
FilterMap m_filter;
};
« no previous file with comments | « no previous file | Source/core/rendering/svg/RenderSVGResourceFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698