Home
last modified time | relevance | path

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

/frameworks/rs/
DrsFont.cpp39 mFace = nullptr; in Font()
51 … error = FT_New_Memory_Face(mRSC->mStateFont.getLib(), (const FT_Byte*)data, dataLen, 0, &mFace); in init()
53 error = FT_New_Face(mRSC->mStateFont.getLib(), name, 0, &mFace); in init()
65 error = FT_Set_Char_Size(mFace, (FT_F26Dot6)(fontSize * 64.0f), 0, dpi, 0); in init()
71 mHasKerning = FT_HAS_KERNING(mFace); in init()
241 FT_Error error = FT_Load_Glyph( mFace, glyph->mGlyphIndex, FT_LOAD_RENDER ); in updateGlyphCache()
247 glyph->mAdvanceX = mFace->glyph->advance.x; in updateGlyphCache()
248 glyph->mAdvanceY = mFace->glyph->advance.y; in updateGlyphCache()
249 glyph->mBitmapLeft = mFace->glyph->bitmap_left; in updateGlyphCache()
250 glyph->mBitmapTop = mFace->glyph->bitmap_top; in updateGlyphCache()
[all …]
DrsFont.h123 FT_FaceRec_ *mFace; variable
/frameworks/base/core/java/android/text/
DHtml.java1169 setSpanFromMark(text, font, new TypefaceSpan(font.mFace)); in endFont()
1288 public String mFace; field in HtmlToSpannedConverter.Font
1291 mFace = face; in Font()