da6289c5f3
retain flaky state to avoid manual edits R=kjlubick@google.com Bug: skia: Change-Id: I2f30a90aed46c52a0b30af1ccb7d6235b6db6945 Reviewed-on: https://skia-review.googlesource.com/149800 Commit-Queue: Cary Clark <caryclark@skia.org> Reviewed-by: Kevin Lubick <kjlubick@google.com>
24 lines
438 B
C++
24 lines
438 B
C++
/*
|
|
* Copyright 2018 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef PathOpsDebug_DEFINED
|
|
#define PathOpsDebug_DEFINED
|
|
|
|
#include <stdio.h>
|
|
|
|
class PathOpsDebug {
|
|
public:
|
|
static bool gJson;
|
|
static bool gMarkJsonFlaky;
|
|
static bool gOutFirst;
|
|
static bool gCheckForDuplicateNames;
|
|
static bool gOutputSVG;
|
|
static FILE* gOut;
|
|
};
|
|
|
|
#endif
|