| 4900 | } |
| 4901 | |
| 4902 | ImVec2 ImGui::CalcWindowExpectedSize(ImGuiWindow* window) |
| 4903 | { |
| 4904 | ImVec2 size_contents = CalcWindowContentSize(window); |
| 4905 | ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, size_contents); |
| 4906 | ImVec2 size_final = CalcWindowSizeAfterConstraint(window, size_auto_fit); |
| 4907 | return size_final; |
| 4908 | } |
| 4909 | |
| 4910 | static ImGuiCol GetWindowBgColorIdxFromFlags(ImGuiWindowFlags flags) |
| 4911 | { |
nothing calls this directly
no test coverage detected