Index: include/core/SkRRect.h |
diff --git a/include/core/SkRRect.h b/include/core/SkRRect.h |
index 16670aab45b4067313cb99ab6e15b78e34202fb7..f27d798bd401acbd77e3c5c331f8954066885699 100644 |
--- a/include/core/SkRRect.h |
+++ b/include/core/SkRRect.h |
@@ -292,13 +292,9 @@ public: |
*/ |
bool transform(const SkMatrix& matrix, SkRRect* dst) const; |
-#ifdef SK_DEVELOPER |
- /** |
- * Prints the rrect using SkDebugf. This is intended for Skia development debugging. Don't |
- * rely on the existence of this function or the formatting of its output. |
- */ |
- void dump() const; |
-#endif |
+ void dump(bool asHex) const; |
+ void dump() const { this->dump(false); } |
+ void dumpHex() const { this->dump(true); } |
private: |
SkRect fRect; |