mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-31 22:25:25 -04:00
Drop wl_display_set_compositor() special case
This commit is contained in:
parent
9d69f8e796
commit
f8ffded1e5
2 changed files with 7 additions and 16 deletions
|
|
@ -1376,7 +1376,13 @@ wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
|
||||||
|
|
||||||
ec->wl_display = display;
|
ec->wl_display = display;
|
||||||
|
|
||||||
wl_display_set_compositor(display, &ec->base, &compositor_interface);
|
ec->base.base.interface = &wl_compositor_interface;
|
||||||
|
ec->base.base.implementation =
|
||||||
|
(void (**)(void)) &compositor_interface;
|
||||||
|
|
||||||
|
wl_display_add_object(display, &ec->base.base);
|
||||||
|
if (wl_display_add_global(display, &ec->base.base, NULL))
|
||||||
|
return -1;
|
||||||
|
|
||||||
ec->shell.base.interface = &wl_shell_interface;
|
ec->shell.base.interface = &wl_shell_interface;
|
||||||
ec->shell.base.implementation = (void (**)(void)) &shell_interface;
|
ec->shell.base.implementation = (void (**)(void)) &shell_interface;
|
||||||
|
|
|
||||||
|
|
@ -282,21 +282,6 @@ wl_client_destroy(struct wl_client *client)
|
||||||
free(client);
|
free(client);
|
||||||
}
|
}
|
||||||
|
|
||||||
WL_EXPORT int
|
|
||||||
wl_display_set_compositor(struct wl_display *display,
|
|
||||||
struct wl_compositor *compositor,
|
|
||||||
const struct wl_compositor_interface *implementation)
|
|
||||||
{
|
|
||||||
compositor->base.interface = &wl_compositor_interface;
|
|
||||||
compositor->base.implementation = (void (**)(void)) implementation;
|
|
||||||
|
|
||||||
wl_display_add_object(display, &compositor->base);
|
|
||||||
if (wl_display_add_global(display, &compositor->base, NULL))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
display_sync(struct wl_client *client,
|
display_sync(struct wl_client *client,
|
||||||
struct wl_display *display, uint32_t key)
|
struct wl_display *display, uint32_t key)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue