Searched defs:glyph_id (Results 1 - 5 of 5) sorted by last modified time

/frameworks/minikin/include/minikin/
H A DLayout.h52 unsigned int glyph_id; member in struct:android::LayoutGlyph
/frameworks/minikin/libs/minikin/
H A DLayout.cpp312 uint32_t glyph_id; local
319 bool ok = font->GetGlyph(unicode, &glyph_id);
321 *glyph = glyph_id;
385 std::cout << glyph.glyph_id << ": " << glyph.x << ", " << glyph.y << std::endl;
788 unsigned int glyph_id = srcGlyph.glyph_id; local
791 LayoutGlyph glyph = {font_ix, glyph_id, x, y};
823 bool ok = face->Render(glyph.glyph_id, paint, &glyphBitmap);
849 return glyph.glyph_id;
H A DMinikinFontFreeType.cpp47 float MinikinFontFreeType::GetHorizontalAdvance(uint32_t glyph_id, argument
52 FT_Error error = FT_Get_Advance(mTypeface, glyph_id, flags, &advance);
56 void MinikinFontFreeType::GetBounds(MinikinRect* bounds, uint32_t glyph_id, argument
75 bool MinikinFontFreeType::Render(uint32_t glyph_id, argument
79 error = FT_Load_Glyph(mTypeface, glyph_id, load_flags);
/frameworks/minikin/sample/
H A DMinikinSkia.cpp35 float MinikinFontSkia::GetHorizontalAdvance(uint32_t glyph_id, argument
38 uint16_t glyph16 = glyph_id;
43 ALOGD("width for typeface %d glyph %d = %f", mTypeface->uniqueID(), glyph_id
48 void MinikinFontSkia::GetBounds(MinikinRect* bounds, uint32_t glyph_id,
51 uint16_t glyph16 = glyph_id;
/frameworks/base/core/jni/android/graphics/
H A DMinikinSkia.cpp55 float MinikinFontSkia::GetHorizontalAdvance(uint32_t glyph_id, argument
58 uint16_t glyph16 = glyph_id;
63 ALOGD("width for typeface %d glyph %d = %f", mTypeface->uniqueID(), glyph_id, skWidth);
68 void MinikinFontSkia::GetBounds(MinikinRect* bounds, uint32_t glyph_id, argument
71 uint16_t glyph16 = glyph_id;

Completed in 113 milliseconds