| 4475 | } |
| 4476 | |
| 4477 | static bool IsWindowActiveAndVisible(ImGuiWindow* window) |
| 4478 | { |
| 4479 | return (window->Active) && (!window->Hidden); |
| 4480 | } |
| 4481 | |
| 4482 | // 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) |
| 4483 | void ImGui::UpdateHoveredWindowAndCaptureFlags() |
no outgoing calls
no test coverage detected