Searched refs:text_begin (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_draw.cpp1176 void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) argument
1182 text_end = text_begin + strlen(text_begin);
1183 if (text_begin == text_end)
1202 font->RenderText(this, font_size, pos, col, clip_rect, text_begin, text_end, wrap_width, cpu_fine_clip_rect != NULL);
1205 void ImDrawList::AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end) argument
1207 AddText(NULL, 0.0f, pos, col, text_begin, text_end);
2641 ImVec2 ImFont::CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end, const char** remaining) const argument
2644 text_end = text_begin + strlen(text_begin); // FIXM
2749 RenderText(ImDrawList * draw_list,float size,ImVec2 pos,ImU32 col,const ImVec4 & clip_rect,const char * text_begin,const char * text_end,float wrap_width,bool cpu_fine_clip) const argument
[all...]
H A Dimgui_widgets.cpp106 static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end);
107 static ImVec2 InputTextCalcTextSizeW(const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining = NULL, ImVec2* out_offset = NULL, bool stop_on_new_line = false);
135 const char* text_begin = text; local in function:ImGui::TextUnformatted
221 const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width);
230 RenderTextWrapped(bb.Min, text_begin, text_end, wrap_width);
353 const char* text_begin = g.TempBuffer; local in function:ImGui::BulletTextV
354 const char* text_end = text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args);
355 const ImVec2 label_size = CalcTextSize(text_begin, text_end, false);
365 RenderText(bb.Min+ImVec2(g.FontSize + style.FramePadding.x*2, text_base_offset_y), text_begin, text_end, false);
2838 static int InputTextCalcTextLenAndLineCount(const char* text_begin, cons argument
2852 InputTextCalcTextSizeW(const ImWchar * text_begin,const ImWchar * text_end,const ImWchar ** remaining,ImVec2 * out_offset,bool stop_on_new_line) argument
3635 const ImWchar* text_begin = edit_state.TextW.Data; local in function:ImGui::InputTextEx
[all...]
H A Dimgui.h1840 IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);
1841 IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);
2116 IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8
2119 IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_draw.cpp1176 void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) argument
1182 text_end = text_begin + strlen(text_begin);
1183 if (text_begin == text_end)
1202 font->RenderText(this, font_size, pos, col, clip_rect, text_begin, text_end, wrap_width, cpu_fine_clip_rect != NULL);
1205 void ImDrawList::AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end) argument
1207 AddText(NULL, 0.0f, pos, col, text_begin, text_end);
2641 ImVec2 ImFont::CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end, const char** remaining) const argument
2644 text_end = text_begin + strlen(text_begin); // FIXM
2749 RenderText(ImDrawList * draw_list,float size,ImVec2 pos,ImU32 col,const ImVec4 & clip_rect,const char * text_begin,const char * text_end,float wrap_width,bool cpu_fine_clip) const argument
[all...]
H A Dimgui_widgets.cpp106 static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end);
107 static ImVec2 InputTextCalcTextSizeW(const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining = NULL, ImVec2* out_offset = NULL, bool stop_on_new_line = false);
135 const char* text_begin = text; local in function:ImGui::TextUnformatted
221 const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width);
230 RenderTextWrapped(bb.Min, text_begin, text_end, wrap_width);
353 const char* text_begin = g.TempBuffer; local in function:ImGui::BulletTextV
354 const char* text_end = text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args);
355 const ImVec2 label_size = CalcTextSize(text_begin, text_end, false);
365 RenderText(bb.Min+ImVec2(g.FontSize + style.FramePadding.x*2, text_base_offset_y), text_begin, text_end, false);
2838 static int InputTextCalcTextLenAndLineCount(const char* text_begin, cons argument
2852 InputTextCalcTextSizeW(const ImWchar * text_begin,const ImWchar * text_end,const ImWchar ** remaining,ImVec2 * out_offset,bool stop_on_new_line) argument
3635 const ImWchar* text_begin = edit_state.TextW.Data; local in function:ImGui::InputTextEx
[all...]
H A Dimgui.h1840 IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);
1841 IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);
2116 IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8
2119 IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;

Completed in 45 milliseconds