mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-01-18 10:57:07 +00:00
Consolidate mouse-touch event checking logic
Saves one `GetMessageExtraInfo()` syscall when handling WM_INPUT events. Will provide consistent results across various event types.
This commit is contained in:
@@ -421,6 +421,11 @@ static SDL_MOUSE_EVENT_SOURCE GetMouseMessageSource()
|
||||
return SDL_MOUSE_EVENT_SOURCE_PEN;
|
||||
}
|
||||
}
|
||||
/* Sometimes WM_INPUT events won't have the correct touch signature,
|
||||
so we have to rely purely on the touch bit being set. */
|
||||
if (SDL_TouchDevicesAvailable() && extrainfo & 0x80) {
|
||||
return SDL_MOUSE_EVENT_SOURCE_TOUCH;
|
||||
}
|
||||
return SDL_MOUSE_EVENT_SOURCE_MOUSE;
|
||||
}
|
||||
#endif /*!defined(__XBOXONE__) && !defined(__XBOXSERIES__)*/
|
||||
@@ -667,8 +672,7 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||
if (inp.header.dwType == RIM_TYPEMOUSE) {
|
||||
SDL_MouseID mouseID;
|
||||
RAWMOUSE *rawmouse;
|
||||
if (SDL_TouchDevicesAvailable() &&
|
||||
(GetMouseMessageSource() == SDL_MOUSE_EVENT_SOURCE_TOUCH || (GetMessageExtraInfo() & 0x80) == 0x80)) {
|
||||
if (GetMouseMessageSource() == SDL_MOUSE_EVENT_SOURCE_TOUCH) {
|
||||
break;
|
||||
}
|
||||
/* We do all of our mouse state checking against mouse ID 0
|
||||
|
||||
Reference in New Issue
Block a user