| 3544 | } |
| 3545 | |
| 3546 | static void SetCurrentWindow(ImGuiWindow* window) |
| 3547 | { |
| 3548 | ImGuiContext& g = *GImGui; |
| 3549 | g.CurrentWindow = window; |
| 3550 | g.CurrentTable = window && window->DC.CurrentTableIdx != -1 ? g.Tables.GetByIndex(window->DC.CurrentTableIdx) : NULL; |
| 3551 | if (window) |
| 3552 | g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize(); |
| 3553 | } |
| 3554 | |
| 3555 | void ImGui::GcCompactTransientMiscBuffers() |
| 3556 | { |
no test coverage detected