Cleanup: Go with SkDebugf instead of GrPrintf.
Since GrPrintf is just defined to SkDebugf, we can go with the later
directly.
BUG=None
TEST=None
R=bsalomon@google.com
Review URL: https://codereview.chromium.org/695663003
diff --git a/src/gpu/GrTextStrike.cpp b/src/gpu/GrTextStrike.cpp
index 19cdf63..13f6ff7 100644
--- a/src/gpu/GrTextStrike.cpp
+++ b/src/gpu/GrTextStrike.cpp
@@ -50,7 +50,7 @@
}
fGpu->unref();
#if FONT_CACHE_STATS
- GrPrintf("Num purges: %d\n", g_PurgeCount);
+ SkDebugf("Num purges: %d\n", g_PurgeCount);
#endif
}
@@ -236,7 +236,7 @@
fFontCache = cache; // no need to ref, it won't go away before we do
#ifdef SK_DEBUG
-// GrPrintf(" GrTextStrike %p %d\n", this, gCounter);
+// SkDebugf(" GrTextStrike %p %d\n", this, gCounter);
gCounter += 1;
#endif
}
@@ -251,7 +251,7 @@
#ifdef SK_DEBUG
gCounter -= 1;
-// GrPrintf("~GrTextStrike %p %d\n", this, gCounter);
+// SkDebugf("~GrTextStrike %p %d\n", this, gCounter);
#endif
}