blob: 30d27a4777bab41aaa1d5e35ec6adb31f1cd9047 [file] [log] [blame]
/*
* Copyright 2020 Google, LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/core/SkData.h"
#include "include/core/SkStream.h"
#include "include/core/SkSurface.h"
#include "modules/svg/include/SkSVGDOM.h"
#include "modules/svg/include/SkSVGNode.h"
#if defined(SK_ENABLE_SVG)
void FuzzSVG(sk_sp<SkData> bytes) {
uint8_t w = 100;
uint8_t h = 200;
SkMemoryStream stream(bytes);
sk_sp<SkSVGDOM> dom = SkSVGDOM::MakeFromStream(stream);
if (!dom) {
return;
}
auto s = SkSurface::MakeRasterN32Premul(128, 128);
if (!s) {
return;
}
SkSize winSize = SkSize::Make(w, h);
dom->setContainerSize(winSize);
dom->containerSize();
dom->render(s->getCanvas());
}
#if defined(SK_BUILD_FOR_LIBFUZZER)
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
if (size > 30000) {
return 0;
}
auto bytes = SkData::MakeWithoutCopy(data, size);
FuzzSVG(bytes);
return 0;
}
#endif
#endif // SK_ENABLE_SVG