aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/effects
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2016-01-13 10:43:09 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-13 10:43:09 -0800
commitfa2b3a376d93e1d611e48c3c2f31ec3198d53600 (patch)
tree0dc12f782a21d24b976b7098eccc1271caa6f2ac /src/effects
parent04194f32f4f5ec9029357a18c0f1f9dc3404fc0c (diff)
remove CreateLightingFilter from SkColorFilter
All callers have converted over to SkColorMatrixFilter BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1583923002 Review URL: https://codereview.chromium.org/1583923002
Diffstat (limited to 'src/effects')
-rw-r--r--src/effects/SkColorMatrixFilter.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/effects/SkColorMatrixFilter.cpp b/src/effects/SkColorMatrixFilter.cpp
index f24670e4bc..ce6ca5538b 100644
--- a/src/effects/SkColorMatrixFilter.cpp
+++ b/src/effects/SkColorMatrixFilter.cpp
@@ -362,8 +362,3 @@ SkColorFilter* SkColorMatrixFilter::CreateLightingFilter(SkColor mul, SkColor ad
0);
return SkColorMatrixFilter::Create(matrix);
}
-
-// DEPRECTED -- remove this when chrome/android stop calling it
-SkColorFilter* SkColorFilter::CreateLightingFilter(SkColor mul, SkColor add) {
- return SkColorMatrixFilter::CreateLightingFilter(mul, add);
-}