Home | History | Annotate | Download | only in android

Lines Matching refs:hFont

57 uint32_t CFX_AndroidFontInfo::GetFontData(void* hFont,
61 if (!hFont)
63 return static_cast<CFPF_SkiaFont*>(hFont)->GetFontData(table, buffer, size);
66 bool CFX_AndroidFontInfo::GetFaceName(void* hFont, CFX_ByteString& name) {
67 if (!hFont)
70 name = static_cast<CFPF_SkiaFont*>(hFont)->GetFamilyName();
74 bool CFX_AndroidFontInfo::GetFontCharset(void* hFont, int& charset) {
75 if (!hFont)
78 charset = static_cast<CFPF_SkiaFont*>(hFont)->GetCharset();
82 void CFX_AndroidFontInfo::DeleteFont(void* hFont) {
83 if (!hFont)
86 static_cast<CFPF_SkiaFont*>(hFont)->Release();