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

Unified Diff: Source/core/platform/graphics/filters/FETurbulence.h

Issue 14263013: Added Skia turbulence filter to Webkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adding TestExpectations typo-related failures Created 7 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/platform/graphics/filters/FETurbulence.h
diff --git a/Source/core/platform/graphics/filters/FETurbulence.h b/Source/core/platform/graphics/filters/FETurbulence.h
index 0b3b51f2a88c6dc3203e983a68ccfc61db0c4a81..8160d91db6e8ac0ed3afacda2412db5459495c2c 100644
--- a/Source/core/platform/graphics/filters/FETurbulence.h
+++ b/Source/core/platform/graphics/filters/FETurbulence.h
@@ -116,6 +116,9 @@ private:
FETurbulence(Filter*, TurbulenceType, float, float, int, float, bool);
virtual void applySoftware() OVERRIDE;
+ virtual bool platformApplySkia();
Stephen White 2013/06/13 17:28:06 The base class version of this function was rename
sugoi 2013/06/13 17:46:33 Done.
+ virtual SkImageFilter* createImageFilter(SkiaImageFilterBuilder*);
+ SkShader* createShader(const IntRect& filterRegion) const;
inline void initPaint(PaintingData&);
float noise2D(int channel, PaintingData&, StitchData&, const FloatPoint&);

Powered by Google App Engine
This is Rietveld 408576698