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

Unified Diff: src/effects/SkBlurMaskFilter.cpp

Issue 60513013: Start on GM to verify removal of 32767 limit in SkBlurMaskFilter::filterRectsToNine is okay (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Clean up Created 7 years, 1 month 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 | « gyp/gmslides.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/effects/SkBlurMaskFilter.cpp
===================================================================
--- src/effects/SkBlurMaskFilter.cpp (revision 12175)
+++ src/effects/SkBlurMaskFilter.cpp (working copy)
@@ -214,7 +214,8 @@
// TODO: report correct metrics for innerstyle, where we do not grow the
// total bounds, but we do need an inset the size of our blur-radius
- if (SkBlurMaskFilter::kInner_BlurStyle == fBlurStyle) {
+ if (SkBlurMaskFilter::kInner_BlurStyle == fBlurStyle ||
+ SkBlurMaskFilter::kOuter_BlurStyle == fBlurStyle) {
return kUnimplemented_FilterReturn;
}
« no previous file with comments | « gyp/gmslides.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698