Searched refs:ImFont (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui.h | 99 struct ImFont; // Runtime data for a single font within a parent ImFontAtlas 299 …IMGUI_API void PushFont(ImFont* font); // use NUL… 308 …IMGUI_API ImFont* GetFont(); // get cur… 1304 …ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use … 1841 …IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const c… 1933 ImFont* DstFont; 1989 IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); 1990 IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); 1991 …IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFo… 1992 …IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels… [all …]
|
D | imgui_draw.cpp | 1176 void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const c… in AddText() 1544 ImFont* ImFontAtlas::AddFont(const ImFontConfig* font_cfg) in AddFont() 1552 Fonts.push_back(IM_NEW(ImFont)); in AddFont() 1589 ImFont* ImFontAtlas::AddFontDefault(const ImFontConfig* font_cfg_template) in AddFontDefault() 1604 …ImFont* font = AddFontFromMemoryCompressedBase85TTF(ttf_compressed_base85, font_cfg.SizePixels, &f… in AddFontDefault() 1609 ImFont* ImFontAtlas::AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig… in AddFontFromFileTTF() 1631 ImFont* ImFontAtlas::AddFontFromMemoryTTF(void* ttf_data, int ttf_size, float size_pixels, const Im… in AddFontFromMemoryTTF() 1644 ImFont* ImFontAtlas::AddFontFromMemoryCompressedTTF(const void* compressed_ttf_data, int compressed… in AddFontFromMemoryCompressedTTF() 1656 ImFont* ImFontAtlas::AddFontFromMemoryCompressedBase85TTF(const char* compressed_ttf_data_base85, f… in AddFontFromMemoryCompressedBase85TTF() 1661 …ImFont* font = AddFontFromMemoryCompressedTTF(compressed_ttf, compressed_ttf_size, size_pixels, fo… in AddFontFromMemoryCompressedBase85TTF() [all …]
|
D | README | 11 ImFont: Minor adjustment to the structure.
|
D | imgui_internal.h | 670 …ImFont* Font; // Current/default font (optional, for simplified AddT… 767 …ImFont* Font; // (Shortcut) == FontStack.empty() ? I… 812 ImVector<ImFont*> FontStack; // Stack for PushFont()/PopFont() 891 ImFont InputTextPasswordFont; 1340 IMGUI_API void SetCurrentFont(ImFont* font); 1341 …inline ImFont* GetDefaultFont() { ImGuiContext& g = *GImGui; return g.IO.FontDefault ? g.… in GetDefaultFont() 1508 IMGUI_API void ImFontAtlasBuildSetupFont(ImFontAtlas* atlas, ImFont* font, ImFontConfi…
|
D | imgui.cpp | 3908 ImFont* font = g.Font; in CalcTextSize() 5670 void ImGui::SetCurrentFont(ImFont* font) in SetCurrentFont() 5685 void ImGui::PushFont(ImFont* font) in PushFont() 6302 ImFont* ImGui::GetFont() in GetFont()
|
D | imgui_widgets.cpp | 2855 ImFont* font = g.Font; in InputTextCalcTextSizeW() 3191 ImFont* password_font = &g.InputTextPasswordFont; in InputTextEx()
|