diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-05-20 14:53:32 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-05-20 14:53:32 +0000 |
commit | 941ff78d79a3239d8a4c18be868423e52563bca5 (patch) | |
tree | 4af57eb63b241e483cf09e820322834688dd2493 /include/effects | |
parent | 4297430b93b56fadbc0474e7299f6cc9c3391f0c (diff) |
Remove legacy constructor for blur draw looper.
Now that Android no longer uses the constructor, remove it, along
with the flag.
R=djsollen@google.com, reed@google.com
Author: scroggo@google.com
Review URL: https://codereview.chromium.org/299683002
git-svn-id: http://skia.googlecode.com/svn/trunk@14797 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/effects')
-rw-r--r-- | include/effects/SkBlurDrawLooper.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/effects/SkBlurDrawLooper.h b/include/effects/SkBlurDrawLooper.h index 75ed80e679..507ec8b0ad 100644 --- a/include/effects/SkBlurDrawLooper.h +++ b/include/effects/SkBlurDrawLooper.h @@ -40,11 +40,6 @@ public: return SkNEW_ARGS(SkBlurDrawLooper, (color, sigma, dx, dy, flags)); } -#ifdef SK_SUPPORT_LEGACY_BLURDRAWLOOPERCONSTRUCTORS - SkBlurDrawLooper(SkScalar radius, SkScalar dx, SkScalar dy, SkColor color, - uint32_t flags = kNone_BlurFlag); -#endif - virtual ~SkBlurDrawLooper(); virtual SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const SK_OVERRIDE; |