| 1695 | //----------------------------------------------------------------------------- |
| 1696 | |
| 1697 | enum ImGuiDebugLogFlags_ |
| 1698 | { |
| 1699 | // Event types |
| 1700 | ImGuiDebugLogFlags_None = 0, |
| 1701 | ImGuiDebugLogFlags_EventActiveId = 1 << 0, |
| 1702 | ImGuiDebugLogFlags_EventFocus = 1 << 1, |
| 1703 | ImGuiDebugLogFlags_EventPopup = 1 << 2, |
| 1704 | ImGuiDebugLogFlags_EventNav = 1 << 3, |
| 1705 | ImGuiDebugLogFlags_EventClipper = 1 << 4, |
| 1706 | ImGuiDebugLogFlags_EventSelection = 1 << 5, |
| 1707 | ImGuiDebugLogFlags_EventIO = 1 << 6, |
| 1708 | ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO, |
| 1709 | ImGuiDebugLogFlags_OutputToTTY = 1 << 10, // Also send output to TTY |
| 1710 | }; |
| 1711 | |
| 1712 | struct ImGuiMetricsConfig |
| 1713 | { |
nothing calls this directly
no outgoing calls
no test coverage detected