()
| 1667 | |
| 1668 | #[no_mangle] |
| 1669 | pub extern "C" fn bloom_disable_cursor() { |
| 1670 | let input = &mut engine().input; |
| 1671 | input.cursor_disabled = true; |
| 1672 | input.clear_mouse_delta(); |
| 1673 | #[cfg(target_os = "linux")] |
| 1674 | x11_impl::enter_relative_mode(); |
| 1675 | } |
| 1676 | |
| 1677 | #[no_mangle] |
| 1678 | pub extern "C" fn bloom_enable_cursor() { |
nothing calls this directly
no test coverage detected