GetGlyphIndex method
Get glyph index position in font for a codepoint (unicode character), fallback to '?' if not found
Implementation
@override
int GetGlyphIndex(
FontD font,
int codepoint,
) => _ffi.GetGlyphIndex(
$.Font$.Ref1(font).asNativePointer<FontC>().ref,
codepoint,
);