| 7089 | } |
| 7090 | |
| 7091 | ImVec2 ImGui::CalcWindowNextAutoFitSize(ImGuiWindow* window) |
| 7092 | { |
| 7093 | ImVec2 size_contents_current; |
| 7094 | ImVec2 size_contents_ideal; |
| 7095 | CalcWindowContentSizes(window, &size_contents_current, &size_contents_ideal); |
| 7096 | ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, size_contents_ideal, ~0); |
| 7097 | ImVec2 size_final = CalcWindowSizeAfterConstraint(window, size_auto_fit); |
| 7098 | return size_final; |
| 7099 | } |
| 7100 | |
| 7101 | static ImGuiCol GetWindowBgColorIdx(ImGuiWindow* window) |
| 7102 | { |
nothing calls this directly
no test coverage detected