ImFont_RenderText function

void ImFont_RenderText(
  1. Pointer<ImFont> self,
  2. Pointer<ImDrawList> draw_list,
  3. double size,
  4. ImVec2 pos,
  5. int col,
  6. ImVec4 clip_rect,
  7. Pointer<Uint8> text_begin,
  8. Pointer<Uint8> text_end,
  9. double wrap_width,
  10. int cpu_fine_clip
)
void ImFont_RenderText(
 ImFont* self ,
 ImDrawList* draw_list ,
 float size ,
 ImVec2 pos ,
 uint col ,
 ImVec4 clip_rect ,
 byte* text_begin ,
 byte* text_end ,
 float wrap_width ,
 byte cpu_fine_clip
);

Implementation

void ImFont_RenderText(
        Pointer<ImFont> self,
        Pointer<ImDrawList> draw_list,
        double size,
        ImVec2 pos,
        int col,
        ImVec4 clip_rect,
        Pointer<Uint8> text_begin,
        Pointer<Uint8> text_end,
        double wrap_width,
        int cpu_fine_clip) =>
    _ImFont_RenderText(self, draw_list, size, pos, col, clip_rect, text_begin,
        text_end, wrap_width, cpu_fine_clip);