Home
last modified time | relevance | path

Searched refs:GetTextLineHeightWithSpacing (Results 1 - 8 of 8) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimgui_memory_editor.h228 footer_height += height_separator + ImGui::GetFrameHeightWithSpacing() * 1 + ImGui::GetTextLineHeightWithSpacing() * 3; in DrawContents()
H A Dimgui.h349 IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)
1668 // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().
H A Dimgui_widgets.cpp5144 ImVec2 size = CalcItemSize(size_arg, CalcItemWidth(), GetTextLineHeightWithSpacing() * 7.4f + style.ItemSpacing.y);
5180 size.y = GetTextLineHeightWithSpacing() * height_in_items_f + style.FramePadding.y * 2.0f;
5215 ImGuiListClipper clipper(items_count, GetTextLineHeightWithSpacing()); // We know exactly our line height here so we pass it as a minor optimization, but generally you don't need to.
H A Dimgui.cpp525 - 2015/02/08 (1.31) - renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing()
6278 float ImGui::GetTextLineHeightWithSpacing() in GetTextLineHeightWithSpacing() function in ImGui
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp1100 if (ImGui::BeginListBox("##listbox 2", ImVec2(-FLT_MIN, 5 * ImGui::GetTextLineHeightWithSpacing()))) in ShowDemoWindowWidgets()
3591 const float TEXT_BASE_HEIGHT = ImGui::GetTextLineHeightWithSpacing();
5686 ImVec2 child_size = ImVec2(0, ImGui::GetTextLineHeightWithSpacing() * 18);
7622 float item_height = ImGui::GetTextLineHeightWithSpacing();
H A Dimgui_widgets.cpp6304 ImVec2 size = ImFloor(CalcItemSize(size_arg, CalcItemWidth(), GetTextLineHeightWithSpacing() * 7.25f + style.FramePadding.y * 2.0f));
6339 size.y = GetTextLineHeightWithSpacing() * height_in_items_f + g.Style.FramePadding.y * 2.0f;
6371 ImVec2 size(0.0f, ImFloor(GetTextLineHeightWithSpacing() * height_in_items_f + g.Style.FramePadding.y * 2.0f));
6380 clipper.Begin(items_count, GetTextLineHeightWithSpacing()); // We know exactly our line height here so we pass it as a minor optimization, but generally you don't need to.
H A Dimgui.h460 IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)
2205 // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().
H A Dimgui.cpp652 - 2015/02/08 (1.31) - renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing()
7471 // - GetTextLineHeightWithSpacing()
7786 float ImGui::GetTextLineHeightWithSpacing() in GetTextLineHeightWithSpacing() function in ImGui

Completed in 103 milliseconds