aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-08-04 11:53:55 -0400
committerTony Crisci <tony@dubstepdish.com>2017-08-04 11:53:55 -0400
commiteffea557bbd7ea4d4dda76eaf050cddf54a90346 (patch)
tree7de45c2fe13a3662e37a5e8a7299ec0b57b89924 /examples
parent6610aa7ca7d170c43705c86db65f7a1f8fc8681a (diff)
Implement destroying surfaces
Add a signal for wlr_surface destruction on the wlr_surface that compositors can listen to to remove the surface from their state. Implement a listener for this in the example wl_compositor to remove the surface from its internal list of surfaces. Destroy the surface in the compositor destroy_surface callback given when the surface resource was created. Add a reference to the surface resource to the wlr_surface so a compositor can find it in its list of resources upon wlr_resource destruction.
Diffstat (limited to 'examples')
-rw-r--r--examples/compositor.h1
-rw-r--r--examples/compositor/wl_compositor.c26
2 files changed, 26 insertions, 1 deletions
diff --git a/examples/compositor.h b/examples/compositor.h
index b04093ca..abe1a743 100644
--- a/examples/compositor.h
+++ b/examples/compositor.h
@@ -8,6 +8,7 @@ struct wl_compositor_state {
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,
diff --git a/examples/compositor/wl_compositor.c b/examples/compositor/wl_compositor.c
index 8fbf4a93..c9dfda56 100644
--- a/examples/compositor/wl_compositor.c
+++ b/examples/compositor/wl_compositor.c
@@ -78,7 +78,28 @@ struct wl_surface_interface surface_interface = {
};
static void destroy_surface(struct wl_resource *resource) {
- wlr_log(L_DEBUG, "TODO: destroy surface");
+ struct wlr_surface *surface = wl_resource_get_user_data(resource);
+ wlr_surface_destroy(surface);
+}
+
+static void destroy_surface_listener(struct wl_listener *listener, void *data) {
+ struct wl_compositor_state *state;
+ struct wlr_surface *surface = data;
+ state = wl_container_of(listener, state, destroy_surface_listener);
+
+ struct wl_resource *res = NULL, *_res;
+ wl_list_for_each(_res, &state->surfaces, link) {
+ if (_res == surface->resource) {
+ res = _res;
+ break;
+ }
+ }
+
+ if (!res) {
+ return;
+ }
+
+ wl_list_remove(&res->link);
}
static void wl_compositor_create_surface(struct wl_client *client,
@@ -87,10 +108,12 @@ static void wl_compositor_create_surface(struct wl_client *client,
struct wl_resource *surface_resource = wl_resource_create(client,
&wl_surface_interface, wl_resource_get_version(resource), id);
struct wlr_surface *surface = wlr_render_surface_init(state->renderer);
+ surface->resource = surface_resource;
wl_resource_set_implementation(surface_resource, &surface_interface,
surface, destroy_surface);
wl_resource_set_user_data(surface_resource, surface);
wl_list_insert(&state->surfaces, wl_resource_get_link(surface_resource));
+ wl_signal_add(&surface->destroy_signal, &state->destroy_surface_listener);
}
static void wl_compositor_create_region(struct wl_client *client,
@@ -137,6 +160,7 @@ void wl_compositor_init(struct wl_display *display,
&wl_compositor_interface, 4, state, wl_compositor_bind);
state->wl_global = wl_global;
state->renderer = renderer;
+ state->destroy_surface_listener.notify = destroy_surface_listener;
wl_list_init(&state->wl_resources);
wl_list_init(&state->surfaces);
}