Reduce TextLayoutCache logging.

Change-Id: I09ae49b0a9708de219b18b00ce5b82ee4a0b2bcd
This commit is contained in:
Jeff Sharkey
2013-01-17 12:53:04 -08:00
parent 0f8d155363
commit 3f32a313db

View File

@@ -62,7 +62,9 @@ static void SkiaGetGlyphWidthAndExtents(SkPaint* paint, hb_codepoint_t codepoint
uint16_t glyph = codepoint;
paint->getTextWidths(&glyph, sizeof(glyph), &skWidth, &skBounds);
#if DEBUG_GLYPHS
ALOGD("returned glyph for %i: width = %f", codepoint, skWidth);
#endif
if (width)
*width = SkScalarToHBFixed(skWidth);
if (extents) {