mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Restrict relative mouse mode to Wayland users (#15697)
This commit is contained in:
@@ -1248,6 +1248,15 @@ bool CIrrDeviceSDL::supportsTouchEvents() const
|
||||
return true;
|
||||
}
|
||||
|
||||
//! Checks whether windowing uses the Wayland protocol.
|
||||
bool CIrrDeviceSDL::isUsingWayland() const
|
||||
{
|
||||
if (!Window)
|
||||
return false;
|
||||
auto *name = SDL_GetCurrentVideoDriver();
|
||||
return name && !strcmp(name, "wayland");
|
||||
}
|
||||
|
||||
//! returns if window is active. if not, nothing need to be drawn
|
||||
bool CIrrDeviceSDL::isWindowActive() const
|
||||
{
|
||||
|
Reference in New Issue
Block a user