| 823 | } |
| 824 | |
| 825 | void recompui::hide_all_contexts() { |
| 826 | std::lock_guard lock{ui_state_mutex}; |
| 827 | |
| 828 | if (ui_state) { |
| 829 | ui_state->hide_all_contexts(); |
| 830 | } |
| 831 | } |
| 832 | |
| 833 | bool recompui::is_context_shown(ContextId context) { |
| 834 | std::lock_guard lock{ui_state_mutex}; |
nothing calls this directly
no outgoing calls
no test coverage detected