summaryrefslogtreecommitdiff
path: root/effects/SkBlurMaskFilter.cpp
diff options
context:
space:
mode:
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-03-17 19:47:40 +0000
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-03-17 19:47:40 +0000
commitfab9c5490b430b11f9e743a3727604d6fd5b7122 (patch)
tree812f9624f567e08c6b0c0bd81ecb3c68734d71ba /effects/SkBlurMaskFilter.cpp
parentce81339e040ca5c75848063c027c8fc37c9fa2ac (diff)
downloadsrc-fab9c5490b430b11f9e743a3727604d6fd5b7122.tar.gz
Revert of Add nine patch type to SkRRect. (https://codereview.chromium.org/196343015/)
Reason for revert: causes tests to have infinite loop Original issue's description: > Add nine patch type to SkRRect. > > BUG=skia:2181 > > Committed: http://code.google.com/p/skia/source/detail?r=13833 R=robertphillips@google.com, reed@google.com TBR=reed@google.com, robertphillips@google.com NOTREECHECKS=true NOTRY=true BUG=skia:2181 Author: bsalomon@google.com Review URL: https://codereview.chromium.org/202163004 git-svn-id: http://skia.googlecode.com/svn/trunk/src@13837 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'effects/SkBlurMaskFilter.cpp')
-rw-r--r--effects/SkBlurMaskFilter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/effects/SkBlurMaskFilter.cpp b/effects/SkBlurMaskFilter.cpp
index ff98daf0..a5cdc4f7 100644
--- a/effects/SkBlurMaskFilter.cpp
+++ b/effects/SkBlurMaskFilter.cpp
@@ -288,10 +288,10 @@ SkBlurMaskFilterImpl::filterRRectToNine(const SkRRect& rrect, const SkMatrix& ma
// already have code for rectangles.
return kUnimplemented_FilterReturn;
- // These three can take advantage of this fast path.
case SkRRect::kSimple_Type:
- case SkRRect::kNinePatch_Type:
+ // Fall through.
case SkRRect::kComplex_Type:
+ // These can take advantage of this fast path.
break;
}