| 831 | } |
| 832 | |
| 833 | bool recompui::is_context_shown(ContextId context) { |
| 834 | std::lock_guard lock{ui_state_mutex}; |
| 835 | |
| 836 | if (!ui_state) { |
| 837 | return false; |
| 838 | } |
| 839 | |
| 840 | return ui_state->is_context_shown(context); |
| 841 | } |
| 842 | |
| 843 | bool recompui::is_context_capturing_input() { |
| 844 | std::lock_guard lock{ui_state_mutex}; |
nothing calls this directly
no outgoing calls
no test coverage detected