9c9611fcc1
Dump as hex instead of SVG to more accurately capture pathops tests. Use SkBits2Float to reconstruct SkScalar data. Exclude tests with conics since, for the moment, pathkit maps conics to quads. R=kjlubick@google.com Bug: skia: Change-Id: Iba2836bde8f737f42c8da31cc26e83ce55de924a Reviewed-on: https://skia-review.googlesource.com/146165 Commit-Queue: Kevin Lubick <kjlubick@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com> Auto-Submit: Cary Clark <caryclark@skia.org>
23 lines
406 B
C++
23 lines
406 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 gOutFirst;
|
|
static bool gCheckForDuplicateNames;
|
|
static bool gOutputSVG;
|
|
static FILE* gOut;
|
|
};
|
|
|
|
#endif
|