diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/compositor.c (renamed from examples/compositor/main.c) | 9 | ||||
-rw-r--r-- | examples/compositor.h | 20 | ||||
-rw-r--r-- | examples/compositor/wl_compositor.c | 72 | ||||
-rw-r--r-- | examples/meson.build | 7 |
4 files changed, 6 insertions, 102 deletions
diff --git a/examples/compositor/main.c b/examples/compositor.c index 4c6e213d..d1252994 100644 --- a/examples/compositor/main.c +++ b/examples/compositor.c @@ -18,17 +18,17 @@ #include <wlr/types/wlr_xdg_shell_v6.h> #include <wlr/types/wlr_seat.h> #include <wlr/types/wlr_data_device_manager.h> +#include "wlr/types/wlr_compositor.h" #include <xkbcommon/xkbcommon.h> #include <wlr/util/log.h> #include "shared.h" -#include "compositor.h" // TODO: move to common header? int os_create_anonymous_file(off_t size); struct sample_state { struct wlr_renderer *renderer; - struct wl_compositor_state compositor; + struct wlr_compositor *wlr_compositor; struct wlr_wl_shell *wl_shell; struct wlr_seat *wl_seat; struct wlr_xdg_shell_v6 *xdg_shell; @@ -95,7 +95,7 @@ static void handle_keyboard_key(struct keyboard_state *keyboard, uint32_t keycod struct wl_resource *res = NULL; struct wlr_seat_handle *seat_handle = NULL; - wl_list_for_each(res, &sample->compositor.surfaces, link) { + wl_list_for_each(res, &sample->wlr_compositor->surfaces, link) { break; } @@ -153,7 +153,7 @@ int main() { exit(EXIT_FAILURE); } wl_display_init_shm(compositor.display); - wl_compositor_init(compositor.display, &state.compositor, state.renderer); + state.wlr_compositor = wlr_compositor_create(compositor.display, state.renderer); state.wl_shell = wlr_wl_shell_create(compositor.display); state.xdg_shell = wlr_xdg_shell_v6_create(compositor.display); state.data_device_manager = wlr_data_device_manager_create(compositor.display); @@ -185,6 +185,7 @@ int main() { wlr_data_device_manager_destroy(state.data_device_manager); wlr_xdg_shell_v6_destroy(state.xdg_shell); wlr_wl_shell_destroy(state.wl_shell); + wlr_compositor_destroy(state.wlr_compositor); wlr_renderer_destroy(state.renderer); compositor_fini(&compositor); } diff --git a/examples/compositor.h b/examples/compositor.h deleted file mode 100644 index b382cc7f..00000000 --- a/examples/compositor.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef _EXAMPLE_COMPOSITOR_H -#define _EXAMPLE_COMPOSITOR_H -#include <wayland-server.h> -#include <wlr/render.h> - -struct wl_compositor_state { - struct wl_global *wl_global; - struct wl_list wl_resources; - struct wlr_renderer *renderer; - struct wl_list surfaces; - struct wl_listener destroy_surface_listener; -}; - -void wl_compositor_init(struct wl_display *display, - struct wl_compositor_state *state, struct wlr_renderer *renderer); - -struct wlr_surface; -void wl_compositor_surface_destroyed(struct wl_compositor_state *compositor, - struct wlr_surface *surface); -#endif diff --git a/examples/compositor/wl_compositor.c b/examples/compositor/wl_compositor.c deleted file mode 100644 index 0bab345d..00000000 --- a/examples/compositor/wl_compositor.c +++ /dev/null @@ -1,72 +0,0 @@ -#include <assert.h> -#include <stdlib.h> -#include <wayland-server.h> -#include <wlr/util/log.h> -#include <wlr/types/wlr_surface.h> -#include <wlr/types/wlr_region.h> -#include "compositor.h" - -static void destroy_surface_listener(struct wl_listener *listener, void *data) { - wl_list_remove(wl_resource_get_link(data)); -} - -static void wl_compositor_create_surface(struct wl_client *client, - struct wl_resource *resource, uint32_t id) { - struct wl_compositor_state *state = wl_resource_get_user_data(resource); - struct wl_resource *surface_resource = wl_resource_create(client, - &wl_surface_interface, wl_resource_get_version(resource), id); - struct wlr_surface *surface = wlr_surface_create(surface_resource, state->renderer); - surface->compositor_data = state; - surface->compositor_listener.notify = &destroy_surface_listener; - wl_resource_add_destroy_listener(surface_resource, &surface->compositor_listener); - - wl_list_insert(&state->surfaces, wl_resource_get_link(surface_resource)); -} - -static void wl_compositor_create_region(struct wl_client *client, - struct wl_resource *resource, uint32_t id) { - wlr_region_create(client, resource, id); -} - -struct wl_compositor_interface wl_compositor_impl = { - .create_surface = wl_compositor_create_surface, - .create_region = wl_compositor_create_region -}; - -static void wl_compositor_destroy(struct wl_resource *resource) { - struct wl_compositor_state *state = wl_resource_get_user_data(resource); - struct wl_resource *_resource = NULL; - wl_resource_for_each(_resource, &state->wl_resources) { - if (_resource == resource) { - struct wl_list *link = wl_resource_get_link(_resource); - wl_list_remove(link); - break; - } - } -} - -static void wl_compositor_bind(struct wl_client *wl_client, void *_state, - uint32_t version, uint32_t id) { - struct wl_compositor_state *state = _state; - assert(wl_client && state); - if (version > 4) { - wlr_log(L_ERROR, "Client requested unsupported wl_compositor version, disconnecting"); - wl_client_destroy(wl_client); - return; - } - struct wl_resource *wl_resource = wl_resource_create( - wl_client, &wl_compositor_interface, version, id); - wl_resource_set_implementation(wl_resource, &wl_compositor_impl, - state, wl_compositor_destroy); - wl_list_insert(&state->wl_resources, wl_resource_get_link(wl_resource)); -} - -void wl_compositor_init(struct wl_display *display, - struct wl_compositor_state *state, struct wlr_renderer *renderer) { - struct wl_global *wl_global = wl_global_create(display, - &wl_compositor_interface, 4, state, wl_compositor_bind); - state->wl_global = wl_global; - state->renderer = renderer; - wl_list_init(&state->wl_resources); - wl_list_init(&state->surfaces); -} diff --git a/examples/meson.build b/examples/meson.build index e2c0189c..d4d96984 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -9,11 +9,6 @@ executable('touch', 'touch.c', dependencies: wlroots, link_with: lib_shared) executable('tablet', 'tablet.c', dependencies: wlroots, link_with: lib_shared) executable('output-layout', 'output-layout.c', dependencies: wlroots, link_with: lib_shared) -compositor_src = [ - 'compositor/main.c', - 'compositor/wl_compositor.c', -] - -executable('compositor', compositor_src, +executable('compositor', 'compositor.c', dependencies: wlroots, link_with: lib_shared) |