ImFont_RenderChar function

void ImFont_RenderChar(
  1. Pointer<ImFont> self,
  2. Pointer<ImDrawList> draw_list,
  3. double size,
  4. ImVec2 pos,
  5. int col,
  6. int c,
)
void ImFont_RenderChar(
 ImFont* self ,
 ImDrawList* draw_list ,
 float size ,
 ImVec2 pos ,
 uint col ,
 ushort c
);

Implementation

void ImFont_RenderChar(Pointer<ImFont> self, Pointer<ImDrawList> draw_list,
        double size, ImVec2 pos, int col, int c) =>
    _ImFont_RenderChar(self, draw_list, size, pos, col, c);