diff options
Diffstat (limited to 'src/pathops/SkPathOpsQuad.h')
-rw-r--r-- | src/pathops/SkPathOpsQuad.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pathops/SkPathOpsQuad.h b/src/pathops/SkPathOpsQuad.h index 69d5a6dd90..932c5fbe75 100644 --- a/src/pathops/SkPathOpsQuad.h +++ b/src/pathops/SkPathOpsQuad.h @@ -62,9 +62,10 @@ struct SkDQuad { SkDCubic toCubic() const; SkDPoint top(double startT, double endT) const; -#ifdef SK_DEBUG - void dump(); -#endif + // utilities callable by the user from the debugger when the implementation code is linked in + void dump() const; + void dumpComma(const char*) const; + private: // static double Tangent(const double* quadratic, double t); // uncalled }; |