| 3788 | } |
| 3789 | |
| 3790 | static void SetCurrentWindow(ImGuiWindow* window) |
| 3791 | { |
| 3792 | ImGuiContext& g = *GImGui; |
| 3793 | g.CurrentWindow = window; |
| 3794 | g.CurrentTable = window && window->DC.CurrentTableIdx != -1 ? g.Tables.GetByIndex(window->DC.CurrentTableIdx) : NULL; |
| 3795 | if (window) |
| 3796 | { |
| 3797 | g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize(); |
| 3798 | ImGui::NavUpdateCurrentWindowIsScrollPushableX(); |
| 3799 | } |
| 3800 | } |
| 3801 | |
| 3802 | void ImGui::GcCompactTransientMiscBuffers() |
| 3803 | { |
no test coverage detected