| 841 | } |
| 842 | |
| 843 | bool recompui::is_context_capturing_input() { |
| 844 | std::lock_guard lock{ui_state_mutex}; |
| 845 | |
| 846 | if (!ui_state) { |
| 847 | return false; |
| 848 | } |
| 849 | |
| 850 | return ui_state->is_context_capturing_input(); |
| 851 | } |
| 852 | |
| 853 | bool recompui::is_context_capturing_mouse() { |
| 854 | std::lock_guard lock{ui_state_mutex}; |
nothing calls this directly
no outgoing calls
no test coverage detected