Change output format of dump() to make VS2008 happy.
authortomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 28 Jun 2011 13:53:13 +0000 (13:53 +0000)
committertomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 28 Jun 2011 13:53:13 +0000 (13:53 +0000)
codereview.appspot.com/4629071/

git-svn-id: http://skia.googlecode.com/svn/trunk@1734 2bbb7eff-a529-9590-31e7-b0007b416f81

src/utils/SkMatrix44.cpp

index 3bf494946eda1896f5220331609e839d4255e570..f3f98a5279e8c2ec8430d79fb40320d24e86392c 100644 (file)
@@ -333,17 +333,20 @@ void SkMatrix44::map(const SkScalar src[4], SkScalar dst[4]) const {
 ///////////////////////////////////////////////////////////////////////////////
 
 void SkMatrix44::dump() const {
-    SkDebugf("[%g %g %g %g][%g %g %g %g][%g %g %g %g][%g %g %g %g]\n",
+    static const char* format =
+        "[%g %g %g %g][%g %g %g %g][%g %g %g %g][%g %g %g %g]\n";
 #if 0
-             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]);
-#else
+    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
 }
 
@@ -383,6 +386,3 @@ SkMatrix44::operator SkMatrix() const {
 
     return dst;
 }
-
-
-