aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2014-10-31 07:11:12 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-31 07:11:12 -0700
commit38406c82b913350e55fa04af8c1941cd9b4aff52 (patch)
tree66fa89ab5909905fed08bc5a34093507a94ad5b5 /experimental
parent8955b0e52490fa71e405e06ec4649d0955d1d537 (diff)
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
Diffstat (limited to 'experimental')
-rw-r--r--experimental/AndroidPathRenderer/GrAndroidPathRenderer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/experimental/AndroidPathRenderer/GrAndroidPathRenderer.cpp b/experimental/AndroidPathRenderer/GrAndroidPathRenderer.cpp
index 4121ad5095..8faf49fe66 100644
--- a/experimental/AndroidPathRenderer/GrAndroidPathRenderer.cpp
+++ b/experimental/AndroidPathRenderer/GrAndroidPathRenderer.cpp
@@ -56,7 +56,7 @@ bool GrAndroidPathRenderer::onDrawPath(const SkPath& origPath,
int vertCount = vertices.getSize();
GrDrawTarget::AutoReleaseGeometry geo(target, vertCount, 0);
if (!geo.succeeded()) {
- GrPrintf("Failed to get space for vertices!\n");
+ SkDebugf("Failed to get space for vertices!\n");
return false;
}