Home
last modified time | relevance | path

Searched refs:skWidth (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
DHarfBuzzNGFaceSkia.cpp64 SkScalar skWidth; in SkiaGetGlyphWidthAndExtents() local
68 paint->getTextWidths(&glyph, sizeof(glyph), &skWidth, &skBounds); in SkiaGetGlyphWidthAndExtents()
70 ALOGD("returned glyph for %i: width = %f", codepoint, skWidth); in SkiaGetGlyphWidthAndExtents()
73 *width = SkScalarToHBFixed(skWidth); in SkiaGetGlyphWidthAndExtents()
/frameworks/base/libs/hwui/hwui/
DMinikinSkia.cpp48 SkScalar skWidth; in GetHorizontalAdvance() local
50 skPaint.getTextWidths(&glyph16, sizeof(glyph16), &skWidth, NULL); in GetHorizontalAdvance()
52 ALOGD("width for typeface %d glyph %d = %f", mTypeface->uniqueID(), glyph_id, skWidth); in GetHorizontalAdvance()
54 return skWidth; in GetHorizontalAdvance()
/frameworks/base/libs/hwui/tests/common/
DTestUtils.cpp112 SkScalar skWidth; in layoutTextUnscaled() local
113 paint.getTextWidths(&glyph, sizeof(glyph), &skWidth, NULL); in layoutTextUnscaled()
114 totalAdvance += skWidth; in layoutTextUnscaled()