| 5690 | } |
| 5691 | |
| 5692 | ImVec2 ImGui::CalcWindowNextAutoFitSize(ImGuiWindow* window) |
| 5693 | { |
| 5694 | ImVec2 size_contents_current; |
| 5695 | ImVec2 size_contents_ideal; |
| 5696 | CalcWindowContentSizes(window, &size_contents_current, &size_contents_ideal); |
| 5697 | ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, size_contents_ideal); |
| 5698 | ImVec2 size_final = CalcWindowSizeAfterConstraint(window, size_auto_fit); |
| 5699 | return size_final; |
| 5700 | } |
| 5701 | |
| 5702 | static ImGuiCol GetWindowBgColorIdx(ImGuiWindow* window) |
| 5703 | { |
nothing calls this directly
no test coverage detected