diff options
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/FilterFuzz.cpp | 2 | ||||
-rw-r--r-- | fuzz/fuzz.cpp | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/fuzz/FilterFuzz.cpp b/fuzz/FilterFuzz.cpp index 7c233b80bf..791fe01a33 100644 --- a/fuzz/FilterFuzz.cpp +++ b/fuzz/FilterFuzz.cpp @@ -580,7 +580,7 @@ static sk_sp<SkImageFilter> make_image_filter(bool canBeNull) { break; case MAGNIFIER: filter = SkMagnifierImageFilter::Make(make_rect(), - make_scalar(true), + make_scalar(true), make_image_filter()); break; case DOWN_SAMPLE: diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp index d35e7ae4d1..326b942bbe 100644 --- a/fuzz/fuzz.cpp +++ b/fuzz/fuzz.cpp @@ -10,7 +10,6 @@ #include "SkCodec.h" #include "SkCommandLineFlags.h" #include "SkData.h" -#include "SkForceLinking.h" #include "SkImage.h" #include "SkImageEncoder.h" #include "SkMallocPixelRef.h" @@ -21,9 +20,6 @@ #include <signal.h> #include <stdlib.h> -// TODO(kjlubick): Remove once http://crrev.com/1671193002 lands -__SK_FORCE_IMAGE_DECODER_LINKING; - DEFINE_string2(bytes, b, "", "A path to a file. This can be the fuzz bytes or a binary to parse."); DEFINE_string2(name, n, "", "If --type is 'api', fuzz the API with this name."); |