ccb686685a
This was landed but not turned on. D'oh! Bug: skia:10286 Change-Id: I65682370046c87c854d806253db32795ef3a9d14 Cq-Include-Trybots: luci.skia.skia.primary:Fuzz-Debian10-Clang Reviewed-on: https://skia-review.googlesource.com/c/skia/+/375736 Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Adlai Holler <adlai@google.com>
20 lines
433 B
C++
20 lines
433 B
C++
/*
|
|
* Copyright 2021 Google, LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "fuzz/Fuzz.h"
|
|
|
|
void fuzz_DDLThreadingGL(Fuzz* f);
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
if (size > 4000) {
|
|
return 0;
|
|
}
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
fuzz_DDLThreadingGL(&fuzz);
|
|
return 0;
|
|
}
|