Initial glfwDragWindow implementation for Wayland

This commit is contained in:
Felipe Ferreira da Silva 2017-04-06 13:57:12 -03:00
parent 126e9a7b70
commit c38b803b18

View File

@ -605,6 +605,11 @@ void _glfwPlatformFocusWindow(_GLFWwindow* window)
"Wayland: Focusing a window requires user interaction");
}
void _glfwPlatformDragWindow(_GLFWwindow* window)
{
wl_shell_surface_move(window->wl.shellSurface, _glfw.wl.seat, _glfw.wl.pointerSerial);
}
void _glfwPlatformSetWindowMonitor(_GLFWwindow* window,
_GLFWmonitor* monitor,
int xpos, int ypos,