| 891 | } |
| 892 | |
| 893 | void InputManager::backend_window_scale_update(const SDL_WindowEvent& e) { |
| 894 | WindowScaleCallbackArgs w; |
| 895 | w.scale = main.window.scale; |
| 896 | main.input_window_scale_callback(w); |
| 897 | } |
| 898 | |
| 899 | void InputManager::backend_key_down_update(const SDL_KeyboardEvent& e) { |
| 900 | auto kPress = e.key; |
no test coverage detected