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/GrDefaultPathRenderer.cpp b/src/gpu/GrDefaultPathRenderer.cpp
index 9d08997..43a545c 100644
--- a/src/gpu/GrDefaultPathRenderer.cpp
+++ b/src/gpu/GrDefaultPathRenderer.cpp
@@ -205,7 +205,7 @@
return false;
}
if (maxPts > ((int)SK_MaxU16 + 1)) {
- GrPrintf("Path not rendered, too many verts (%d)\n", maxPts);
+ SkDebugf("Path not rendered, too many verts (%d)\n", maxPts);
return false;
}