ImFontAtlas_AddCustomRectFontGlyph function

int ImFontAtlas_AddCustomRectFontGlyph(
  1. Pointer<ImFontAtlas> self,
  2. Pointer<ImFont> font,
  3. int id,
  4. int width,
  5. int height,
  6. double advance_x,
  7. ImVec2 offset,
)
int ImFontAtlas_AddCustomRectFontGlyph(
 ImFontAtlas* self ,
 ImFont* font ,
 ushort id ,
 int width ,
 int height ,
 float advance_x ,
 ImVec2 offset
);

Implementation

int ImFontAtlas_AddCustomRectFontGlyph(
        Pointer<ImFontAtlas> self,
        Pointer<ImFont> font,
        int id,
        int width,
        int height,
        double advance_x,
        ImVec2 offset) =>
    _ImFontAtlas_AddCustomRectFontGlyph(
        self, font, id, width, height, advance_x, offset);