Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
FuzzRRect.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2020 Google, LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8// To use this fuzzer follow the libfuzzer directions in
9// site/dev/testing/fuzz.md.
10
12
13extern "C" int LLVMFuzzerTestOneInput(const uint8_t* buf, size_t size) {
14 SkRRect rrect;
15 (void)rrect.readFromMemory(buf, size);
16 return 0;
17}
int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t size)
Definition FuzzRRect.cpp:13
size_t readFromMemory(const void *buffer, size_t length)
Definition SkRRect.cpp:610