|
|
|
@ -364,9 +364,9 @@ static void checkScaleChange(_GLFWwindow* window) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void surfaceHandleEnter(void *data, |
|
|
|
|
struct wl_surface *surface, |
|
|
|
|
struct wl_output *output) |
|
|
|
|
static void surfaceHandleEnter(void* data, |
|
|
|
|
struct wl_surface* surface, |
|
|
|
|
struct wl_output* output) |
|
|
|
|
{ |
|
|
|
|
_GLFWwindow* window = data; |
|
|
|
|
_GLFWmonitor* monitor = wl_output_get_user_data(output); |
|
|
|
@ -384,9 +384,9 @@ static void surfaceHandleEnter(void *data, |
|
|
|
|
checkScaleChange(window); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void surfaceHandleLeave(void *data, |
|
|
|
|
struct wl_surface *surface, |
|
|
|
|
struct wl_output *output) |
|
|
|
|
static void surfaceHandleLeave(void* data, |
|
|
|
|
struct wl_surface* surface, |
|
|
|
|
struct wl_output* output) |
|
|
|
|
{ |
|
|
|
|
_GLFWwindow* window = data; |
|
|
|
|
_GLFWmonitor* monitor = wl_output_get_user_data(output); |
|
|
|
@ -1163,7 +1163,7 @@ void _glfwSetWindowOpacityWayland(_GLFWwindow* window, float opacity) |
|
|
|
|
"Wayland: The platform does not support setting the window opacity"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void _glfwSetRawMouseMotionWayland(_GLFWwindow *window, GLFWbool enabled) |
|
|
|
|
void _glfwSetRawMouseMotionWayland(_GLFWwindow* window, GLFWbool enabled) |
|
|
|
|
{ |
|
|
|
|
// This is handled in relativePointerHandleRelativeMotion
|
|
|
|
|
} |
|
|
|
|