2
0
mirror of https://github.com/Genymobile/scrcpy synced 2025-08-31 06:15:25 +00:00

Provide relative mouse motion vector in event

This will allow the mouse processor to handle relative motion easily.
This commit is contained in:
Romain Vimont
2021-12-30 00:05:30 +01:00
parent b5855e5deb
commit 643293752d
2 changed files with 4 additions and 0 deletions

View File

@@ -651,6 +651,8 @@ input_manager_process_mouse_motion(struct input_manager *im,
.point = screen_convert_window_to_frame_coords(im->screen,
event->x, event->y),
},
.xrel = event->xrel,
.yrel = event->yrel,
.buttons_state =
sc_mouse_buttons_state_from_sdl(event->state,
im->forward_all_clicks),