aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode
diff options
context:
space:
mode:
authorGravatar senorblanco <senorblanco@chromium.org>2014-07-22 12:49:25 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-07-22 12:49:25 -0700
commitbc9845bb60cd883e7ddabb21f04997602145a1ad (patch)
tree9814d70dd0fc39d7cf6e3a6647b83bcfc478b186 /samplecode
parent24519371cb541db6f59d903d21878ed9c45eb549 (diff)
Remove the single-sigma version of SkDropShadowImageFilter::Create().
It's no longer used in Chrome. BUG=skia: R=bsalomon@google.com Author: senorblanco@chromium.org Review URL: https://codereview.chromium.org/407203002
Diffstat (limited to 'samplecode')
-rw-r--r--samplecode/SampleFilterFuzz.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/samplecode/SampleFilterFuzz.cpp b/samplecode/SampleFilterFuzz.cpp
index 9e3d762f9e..298219dbc0 100644
--- a/samplecode/SampleFilterFuzz.cpp
+++ b/samplecode/SampleFilterFuzz.cpp
@@ -341,7 +341,7 @@ static SkImageFilter* make_image_filter(bool canBeNull = true) {
break;
case DROP_SHADOW:
filter = SkDropShadowImageFilter::Create(make_scalar(), make_scalar(),
- make_scalar(true), make_color(), make_image_filter());
+ make_scalar(true), make_scalar(true), make_color(), make_image_filter());
break;
case MORPHOLOGY:
if (R(2) == 1) {