Home | History | Annotate | Download | only in android

Lines Matching refs:hFont

53 FX_DWORD CFX_AndroidFontInfo::GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size)
55 if (!hFont) {
58 return ((IFPF_Font*)hFont)->GetFontData(table, buffer, size);
60 FX_BOOL CFX_AndroidFontInfo::GetFaceName(void* hFont, CFX_ByteString& name)
62 if (!hFont) {
65 name = ((IFPF_Font*)hFont)->GetFamilyName();
68 FX_BOOL CFX_AndroidFontInfo::GetFontCharset(void* hFont, int& charset)
70 if (!hFont) {
73 charset = ((IFPF_Font*)hFont)->GetCharset();
76 void CFX_AndroidFontInfo::DeleteFont(void* hFont)
78 if (!hFont) {
81 ((IFPF_Font*)hFont)->Release();
83 void* CFX_AndroidFontInfo::RetainFont(void* hFont)