| 5452 | } |
| 5453 | |
| 5454 | ImVec2 ImGui::CalcWindowNextAutoFitSize(ImGuiWindow* window) |
| 5455 | { |
| 5456 | ImVec2 size_contents_current; |
| 5457 | ImVec2 size_contents_ideal; |
| 5458 | CalcWindowContentSizes(window, &size_contents_current, &size_contents_ideal); |
| 5459 | ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, size_contents_ideal); |
| 5460 | ImVec2 size_final = CalcWindowSizeAfterConstraint(window, size_auto_fit); |
| 5461 | return size_final; |
| 5462 | } |
| 5463 | |
| 5464 | static ImGuiCol GetWindowBgColorIdx(ImGuiWindow* window) |
| 5465 | { |
nothing calls this directly
no test coverage detected