GetGlyphInfo method

GlyphInfoD GetGlyphInfo(
  1. FontD font,
  2. num codepoint
)

Implementation

GlyphInfoD GetGlyphInfo(
  FontD font,
  num codepoint,
) => run(
  () => 'GetGlyphInfo($font, $codepoint)',
  () => rl.Core.GetGlyphInfo(
    _refFont1(font).ref,
    codepoint.toInt(),
  ).toD(),
);