Explorar o código

Ignore synthetic mouse events generated for touchscreens

Windows generates fake raw mouse events for touchscreens for compatibility
with legacy apps that predate touch support in Windows. We already handle
touch events explicitly, so drop the synthetic events to avoid duplicates.
Cameron Gutman %!s(int64=6) %!d(string=hai) anos
pai
achega
7e09718dfe
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/video/windows/SDL_windowsevents.c

+ 2 - 2
src/video/windows/SDL_windowsevents.c

@@ -552,8 +552,8 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
 
             GetRawInputData(hRawInput, RID_INPUT, &inp, &size, sizeof(RAWINPUTHEADER));
 
-            /* Mouse data */
-            if (inp.header.dwType == RIM_TYPEMOUSE) {
+            /* Mouse data (ignoring synthetic mouse events generated for touchscreens) */
+            if (inp.header.dwType == RIM_TYPEMOUSE && (GetMessageExtraInfo() & 0x80) == 0) {
                 if (isRelative) {
                     RAWMOUSE* rawmouse = &inp.data.mouse;