| 4416 | } |
| 4417 | |
| 4418 | static bool IsWindowActiveAndVisible(ImGuiWindow* window) |
| 4419 | { |
| 4420 | return (window->Active) && (!window->Hidden); |
| 4421 | } |
| 4422 | |
| 4423 | // The reason this is exposed in imgui_internal.h is: on touch-based system that don't have hovering, we want to dispatch inputs to the right target (imgui vs imgui+app) |
| 4424 | void ImGui::UpdateHoveredWindowAndCaptureFlags() |
no outgoing calls
no test coverage detected