mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 10:05:10 +00:00
Wayland: Clean up pointer helper function order
This commit is contained in:
parent
488008e0a2
commit
7be6a2cabe
@ -2492,15 +2492,6 @@ static void lockedPointerHandleLocked(void* userData,
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
static void unlockPointer(_GLFWwindow* window)
|
|
||||||
{
|
|
||||||
zwp_relative_pointer_v1_destroy(window->wl.relativePointer);
|
|
||||||
window->wl.relativePointer = NULL;
|
|
||||||
|
|
||||||
zwp_locked_pointer_v1_destroy(window->wl.lockedPointer);
|
|
||||||
window->wl.lockedPointer = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void lockedPointerHandleUnlocked(void* userData,
|
static void lockedPointerHandleUnlocked(void* userData,
|
||||||
struct zwp_locked_pointer_v1* lockedPointer)
|
struct zwp_locked_pointer_v1* lockedPointer)
|
||||||
{
|
{
|
||||||
@ -2541,6 +2532,15 @@ static void lockPointer(_GLFWwindow* window)
|
|||||||
window);
|
window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void unlockPointer(_GLFWwindow* window)
|
||||||
|
{
|
||||||
|
zwp_relative_pointer_v1_destroy(window->wl.relativePointer);
|
||||||
|
window->wl.relativePointer = NULL;
|
||||||
|
|
||||||
|
zwp_locked_pointer_v1_destroy(window->wl.lockedPointer);
|
||||||
|
window->wl.lockedPointer = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static void confinedPointerHandleConfined(void* userData,
|
static void confinedPointerHandleConfined(void* userData,
|
||||||
struct zwp_confined_pointer_v1* confinedPointer)
|
struct zwp_confined_pointer_v1* confinedPointer)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user