2018-03-21 14:17:25 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google, LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../Fuzz.h"
|
2018-12-14 16:42:53 +00:00
|
|
|
#include "SkTestFontMgr.h"
|
|
|
|
#include "SkFontMgrPriv.h"
|
2018-03-21 14:17:25 +00:00
|
|
|
|
|
|
|
void fuzz_RasterN32Canvas(Fuzz* f);
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
2018-12-14 16:42:53 +00:00
|
|
|
gSkFontMgr_DefaultFactory = &sk_tool_utils::MakePortableFontMgr;
|
2018-03-21 14:17:25 +00:00
|
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
|
|
fuzz_RasterN32Canvas(&fuzz);
|
|
|
|
return 0;
|
|
|
|
}
|