mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] wayland: make cursor change work without wl_pointer
This commit is contained in:
parent
43545a4e17
commit
a5727262cd
@ -217,5 +217,6 @@ void waylandSetPointer(LG_DSPointer pointer)
|
|||||||
wlWm.cursor = wlWm.cursors[pointer];
|
wlWm.cursor = wlWm.cursors[pointer];
|
||||||
wlWm.cursorHotX = wlWm.cursorHot[pointer].x;
|
wlWm.cursorHotX = wlWm.cursorHot[pointer].x;
|
||||||
wlWm.cursorHotY = wlWm.cursorHot[pointer].y;
|
wlWm.cursorHotY = wlWm.cursorHot[pointer].y;
|
||||||
wl_pointer_set_cursor(wlWm.pointer, wlWm.pointerEnterSerial, wlWm.cursor, wlWm.cursorHotX, wlWm.cursorHotY);
|
if (wlWm.pointer)
|
||||||
|
wl_pointer_set_cursor(wlWm.pointer, wlWm.pointerEnterSerial, wlWm.cursor, wlWm.cursorHotX, wlWm.cursorHotY);
|
||||||
}
|
}
|
||||||
|
@ -304,6 +304,7 @@ static void handlePointerCapability(uint32_t capabilities)
|
|||||||
{
|
{
|
||||||
wlWm.pointer = wl_seat_get_pointer(wlWm.seat);
|
wlWm.pointer = wl_seat_get_pointer(wlWm.seat);
|
||||||
wl_pointer_add_listener(wlWm.pointer, &pointerListener, NULL);
|
wl_pointer_add_listener(wlWm.pointer, &pointerListener, NULL);
|
||||||
|
waylandSetPointer(wlWm.cursorId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,6 +95,9 @@ static bool waylandInit(const LG_DSInitParams params)
|
|||||||
if (!waylandPresentationInit())
|
if (!waylandPresentationInit())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (!waylandCursorInit())
|
||||||
|
return false;
|
||||||
|
|
||||||
if (!waylandInputInit())
|
if (!waylandInputInit())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@ -104,9 +107,6 @@ static bool waylandInit(const LG_DSInitParams params)
|
|||||||
if (!waylandEGLInit(params.w, params.h))
|
if (!waylandEGLInit(params.w, params.h))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (!waylandCursorInit())
|
|
||||||
return false;
|
|
||||||
|
|
||||||
#ifdef ENABLE_OPENGL
|
#ifdef ENABLE_OPENGL
|
||||||
if (params.opengl && !waylandOpenGLInit())
|
if (params.opengl && !waylandOpenGLInit())
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user