()
| 2235 | |
| 2236 | #[no_mangle] |
| 2237 | pub extern "C" fn bloom_disable_cursor() { |
| 2238 | let input = &mut engine().input; |
| 2239 | input.cursor_disabled = true; |
| 2240 | input.clear_mouse_delta(); |
| 2241 | unsafe { |
| 2242 | CGDisplayHideCursor(0); |
| 2243 | CGAssociateMouseAndMouseCursorPosition(0); // dissociate = relative mode |
| 2244 | } |
| 2245 | } |
| 2246 | |
| 2247 | #[no_mangle] |
| 2248 | pub extern "C" fn bloom_enable_cursor() { |
nothing calls this directly
no test coverage detected