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

Unified Diff: include/effects/SkEmbossMaskFilter.h

Issue 21835004: Blur refactoring (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Removed unneeded #includes Created 7 years, 4 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 | « include/effects/SkBlurMaskFilter.h ('k') | samplecode/SampleAll.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/effects/SkEmbossMaskFilter.h
===================================================================
--- include/effects/SkEmbossMaskFilter.h (revision 10932)
+++ include/effects/SkEmbossMaskFilter.h (working copy)
@@ -23,6 +23,9 @@
uint8_t fSpecular; // exponent, 4.4 right now
};
+ SkEmbossMaskFilter(SkScalar blurSigma, const Light& light);
+
+ // DEPRECATED - radius-based
SkEmbossMaskFilter(const Light& light, SkScalar blurRadius);
// overrides from SkMaskFilter
@@ -41,7 +44,7 @@
private:
Light fLight;
- SkScalar fBlurRadius;
+ SkScalar fBlurSigma;
typedef SkMaskFilter INHERITED;
};
« no previous file with comments | « include/effects/SkBlurMaskFilter.h ('k') | samplecode/SampleAll.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698