aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/SkScalerContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkScalerContext.cpp')
-rw-r--r--src/core/SkScalerContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkScalerContext.cpp b/src/core/SkScalerContext.cpp
index 85baf94..eee0dc5 100644
--- a/src/core/SkScalerContext.cpp
+++ b/src/core/SkScalerContext.cpp
@@ -171,7 +171,6 @@ SkScalerContext* SkScalerContext::getContextFromChar(SkUnichar uni, unsigned& gl
}
ctx = ctx->getNextContext();
if (NULL == ctx) {
- SkDebugf("--- no context for char %x\n", uni);
return NULL;
}
}
@@ -220,6 +219,7 @@ unsigned SkScalerContext::getBaseGlyphCount(SkUnichar uni) {
if (ctx) {
return ctx->fBaseGlyphCount;
} else {
+ SkDEBUGF(("--- no context for char %x\n", uni));
return this->fBaseGlyphCount;
}
}