Added support for external mouse in Samsung DeX mode

relative mode doesn't work, but absolute coordinates are functional
This commit is contained in:
Sam Lantinga
2018-06-18 13:14:02 -07:00
parent f1d8f5f7fd
commit a515853569
7 changed files with 56 additions and 3 deletions

View File

@@ -721,6 +721,9 @@ SDL_SetRelativeMouseMode(SDL_bool enabled)
} else if (mouse->SetRelativeMouseMode(enabled) < 0) {
if (enabled) {
/* Fall back to warp mode if native relative mode failed */
if (!mouse->WarpMouse) {
return SDL_SetError("No relative mode implementation available");
}
mouse->relative_mode_warp = SDL_TRUE;
}
}