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

@@ -365,6 +365,8 @@ struct sc_mouse_scroll_event {
struct sc_mouse_motion_event {
struct sc_position position;
int32_t xrel;
int32_t yrel;
uint8_t buttons_state; // bitwise-OR of sc_mouse_button values
};