xref: /third_party/skia/tests/PathOpsDebug.h (revision cb93a386)
1/*
2 * Copyright 2018 Google Inc.
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#ifndef PathOpsDebug_DEFINED
9#define PathOpsDebug_DEFINED
10
11#include <stdio.h>
12
13class PathOpsDebug {
14public:
15    static bool gJson;
16    static bool gMarkJsonFlaky;
17    static bool gOutFirst;
18    static bool gCheckForDuplicateNames;
19    static bool gOutputSVG;
20    static FILE* gOut;
21};
22
23#endif
24