GetGlyphAtlasRec method

RectangleD GetGlyphAtlasRec(
  1. FontD font,
  2. num codepoint
)

Implementation

RectangleD GetGlyphAtlasRec(
  FontD font,
  num codepoint,
) => run(
  () => 'GetGlyphAtlasRec($font, $codepoint)',
  () => rl.Core.GetGlyphAtlasRec(
    rl.Temp.Font$.Ref1(font).ref,
    codepoint.toInt(),
  ).toD(),
);