mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 13:20:43 +00:00
Waiting for the "initial" set of globals to appear
(fixed xdg_wm_base_ping working)
This commit is contained in:
parent
fbcab67d8b
commit
17fd203141
@ -350,6 +350,8 @@ static const struct wl_pointer_listener pointer_listener = {
|
|||||||
pointer_handle_axis,
|
pointer_handle_axis,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// TODO: implement check for resize
|
||||||
|
|
||||||
static void touch_handle_down(void *data,
|
static void touch_handle_down(void *data,
|
||||||
struct wl_touch *wl_touch,
|
struct wl_touch *wl_touch,
|
||||||
uint32_t serial,
|
uint32_t serial,
|
||||||
@ -548,10 +550,11 @@ bool wayland_context_gettouchpos(void *data, unsigned id,
|
|||||||
|
|
||||||
|
|
||||||
/* Shell surface callbacks. */
|
/* Shell surface callbacks. */
|
||||||
static void xdg_shell_ping (void *data, struct xdg_wm_base *shell, uint32_t serial)
|
static void xdg_shell_ping(void *data, struct xdg_wm_base *shell, uint32_t serial)
|
||||||
{
|
{
|
||||||
xdg_wm_base_pong(shell, serial);
|
xdg_wm_base_pong(shell, serial);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct xdg_wm_base_listener xdg_shell_listener = {
|
static const struct xdg_wm_base_listener xdg_shell_listener = {
|
||||||
xdg_shell_ping,
|
xdg_shell_ping,
|
||||||
};
|
};
|
||||||
@ -576,6 +579,8 @@ static void handle_toplevel_config(void *data, struct xdg_toplevel *toplevel,
|
|||||||
wl->configured = false;
|
wl->configured = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: implement xdg_toplevel close
|
||||||
|
|
||||||
|
|
||||||
static const struct xdg_toplevel_listener xdg_toplevel_listener = {
|
static const struct xdg_toplevel_listener xdg_toplevel_listener = {
|
||||||
handle_toplevel_config,
|
handle_toplevel_config,
|
||||||
@ -1305,11 +1310,16 @@ static bool gfx_ctx_wl_set_video_mode(void *data,
|
|||||||
xdg_toplevel_set_app_id (wl->xdg_toplevel, "RetroArch");
|
xdg_toplevel_set_app_id (wl->xdg_toplevel, "RetroArch");
|
||||||
xdg_toplevel_set_title (wl->xdg_toplevel, "RetroArch");
|
xdg_toplevel_set_title (wl->xdg_toplevel, "RetroArch");
|
||||||
|
|
||||||
|
// Waiting for xdg_toplevel to be configured before starting to draw
|
||||||
wl_surface_commit(wl->surface);
|
wl_surface_commit(wl->surface);
|
||||||
wl->configured = true;
|
wl->configured = true;
|
||||||
|
|
||||||
while (wl->configured)
|
while (wl->configured)
|
||||||
wl_display_dispatch(wl->input.dpy);
|
wl_display_dispatch(wl->input.dpy);
|
||||||
|
|
||||||
|
// Waiting for the "initial" set of globals to appear
|
||||||
|
wl_display_roundtrip(wl->input.dpy);
|
||||||
|
xdg_wm_base_add_listener(wl->shell, &xdg_shell_listener, NULL);
|
||||||
|
|
||||||
switch (wl_api)
|
switch (wl_api)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user