Searched refs:width_excess (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_widgets.cpp6045 float width_excess = (width_avail < width_total_contents) ? (width_total_contents - width_avail) : 0.0f; local in function:ImGui::TabBarLayout
6046 if (width_excess > 0.0f && (tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyResizeDown))
6052 while (width_excess > 0.0f && tab_count_same_width < tab_bar->Tabs.Size)
6057 float width_to_remove_per_tab = ImMin(width_excess / tab_count_same_width, width_to_remove_per_tab_max);
6060 width_excess -= width_to_remove_per_tab * tab_count_same_width;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_widgets.cpp6045 float width_excess = (width_avail < width_total_contents) ? (width_total_contents - width_avail) : 0.0f; local in function:ImGui::TabBarLayout
6046 if (width_excess > 0.0f && (tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyResizeDown))
6052 while (width_excess > 0.0f && tab_count_same_width < tab_bar->Tabs.Size)
6057 float width_to_remove_per_tab = ImMin(width_excess / tab_count_same_width, width_to_remove_per_tab_max);
6060 width_excess -= width_to_remove_per_tab * tab_count_same_width;

Completed in 49 milliseconds