Chromium Code Reviews| Index: src/core/SkFuzzLogging.h |
| diff --git a/src/core/SkFuzzLogging.h b/src/core/SkFuzzLogging.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..36a3069d6b5b0833977cb140c09f65acb8414670 |
| --- /dev/null |
| +++ b/src/core/SkFuzzLogging.h |
| @@ -0,0 +1,19 @@ |
| +/* |
| + * Copyright 2016 Google Inc. |
| + * |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +#ifndef SkFuzzLogging_DEFINED |
| +#define SkFuzzLogging_DEFINED |
| + |
| +// Utilities for Skia's fuzzer |
| + |
| +#ifdef SK_FUZZ |
|
reed1
2016/04/08 19:45:49
nit: SK_FUZZ_LOGGING
reed1
2016/04/08 19:45:49
// If you want to enable debugfs for image-filter-
robertphillips
2016/04/08 20:30:09
Done.
robertphillips
2016/04/08 20:30:09
Done.
|
| + #define SkFUZZF(args) SkDebugf("SkFUZZ: "); SkDebugf args |
| +#else |
| + #define SkFUZZF(args) |
| +#endif |
| + |
| +#endif |