| 5229 | } |
| 5230 | |
| 5231 | static bool IsWindowActiveAndVisible(ImGuiWindow* window) |
| 5232 | { |
| 5233 | return (window->Active) && (!window->Hidden); |
| 5234 | } |
| 5235 | |
| 5236 | // 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) |
| 5237 | void ImGui::UpdateHoveredWindowAndCaptureFlags() |
no outgoing calls
no test coverage detected