| 2778 | // - You are calling ImGui functions after ImGui::EndFrame()/ImGui::Render() and before the next ImGui::NewFrame(), which is also illegal. |
| 2779 | inline ImGuiWindow* GetCurrentWindowRead() { ImGuiContext& g = *GImGui; return g.CurrentWindow; } |
| 2780 | inline ImGuiWindow* GetCurrentWindow() { ImGuiContext& g = *GImGui; g.CurrentWindow->WriteAccessed = true; return g.CurrentWindow; } |
| 2781 | IMGUI_API ImGuiWindow* FindWindowByID(ImGuiID id); |
| 2782 | IMGUI_API ImGuiWindow* FindWindowByName(const char* name); |
| 2783 | IMGUI_API void UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWindow* parent_window); |
no outgoing calls
no test coverage detected