Make SkMatrix44:dump() print out a recognizable matrix.
authorMike Klein <mtklein@chromium.org>
Thu, 1 Dec 2016 21:11:07 +0000 (16:11 -0500)
committerSkia Commit-Bot <skia-commit-bot@chromium.org>
Thu, 1 Dec 2016 21:48:21 +0000 (21:48 +0000)
Change-Id: I7b64d8aee335eef39924ab65f46f196892ea2a39
Reviewed-on: https://skia-review.googlesource.com/5465
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Mike Klein <mtklein@chromium.org>

src/core/SkMatrix44.cpp

index 818f23af5a4f06b6a098238d257245e3245c5061..f5cdc2344adf3975f7a49fa9832dabb02ab99889 100644 (file)
@@ -946,21 +946,15 @@ bool SkMatrix44::preserves2dAxisAlignment (SkMScalar epsilon) const {
 ///////////////////////////////////////////////////////////////////////////////
 
 void SkMatrix44::dump() const {
-    static const char* format =
-        "[%g %g %g %g][%g %g %g %g][%g %g %g %g][%g %g %g %g]\n";
-#if 0
+    static const char* format = "|%g %g %g %g|\n"
+                                "|%g %g %g %g|\n"
+                                "|%g %g %g %g|\n"
+                                "|%g %g %g %g|\n";
     SkDebugf(format,
              fMat[0][0], fMat[1][0], fMat[2][0], fMat[3][0],
              fMat[0][1], fMat[1][1], fMat[2][1], fMat[3][1],
              fMat[0][2], fMat[1][2], fMat[2][2], fMat[3][2],
              fMat[0][3], fMat[1][3], fMat[2][3], fMat[3][3]);
-#else
-    SkDebugf(format,
-             fMat[0][0], fMat[0][1], fMat[0][2], fMat[0][3],
-             fMat[1][0], fMat[1][1], fMat[1][2], fMat[1][3],
-             fMat[2][0], fMat[2][1], fMat[2][2], fMat[2][3],
-             fMat[3][0], fMat[3][1], fMat[3][2], fMat[3][3]);
-#endif
 }
 
 ///////////////////////////////////////////////////////////////////////////////