ImDrawList_AddTextFontPtr function

void ImDrawList_AddTextFontPtr(
  1. Pointer<ImDrawList> self,
  2. Pointer<ImFont> font,
  3. double font_size,
  4. ImVec2 pos,
  5. int col,
  6. Pointer<Uint8> text_begin,
  7. Pointer<Uint8> text_end,
  8. double wrap_width,
  9. Pointer<ImVec4> cpu_fine_clip_rect
)
void ImDrawList_AddTextFontPtr(
 ImDrawList* self ,
 ImFont* font ,
 float font_size ,
 ImVec2 pos ,
 uint col ,
 byte* text_begin ,
 byte* text_end ,
 float wrap_width ,
 ImVec4* cpu_fine_clip_rect
);

Implementation

void ImDrawList_AddTextFontPtr(
        Pointer<ImDrawList> self,
        Pointer<ImFont> font,
        double font_size,
        ImVec2 pos,
        int col,
        Pointer<Uint8> text_begin,
        Pointer<Uint8> text_end,
        double wrap_width,
        Pointer<ImVec4> cpu_fine_clip_rect) =>
    _ImDrawList_AddTextFontPtr(self, font, font_size, pos, col, text_begin,
        text_end, wrap_width, cpu_fine_clip_rect);