Skip to content
This repository has been archived by the owner on Nov 1, 2021. It is now read-only.

Commit

Permalink
layer-shell: remove unused surface list
Browse files Browse the repository at this point in the history
This was rendered useless in 5cde359.
  • Loading branch information
ifreund authored and emersion committed Jul 7, 2020
1 parent b61a98c commit 92c8585
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions include/wlr/types/wlr_layer_shell_v1.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
*/
struct wlr_layer_shell_v1 {
struct wl_global *global;
struct wl_list surfaces; // wl_layer_surface

struct wl_listener display_destroy;

Expand Down Expand Up @@ -63,7 +62,6 @@ struct wlr_layer_surface_v1_configure {
};

struct wlr_layer_surface_v1 {
struct wl_list link; // wlr_layer_shell_v1::surfaces
struct wlr_surface *surface;
struct wlr_output *output;
struct wl_resource *resource;
Expand Down
4 changes: 0 additions & 4 deletions types/wlr_layer_shell_v1.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ static void layer_surface_destroy(struct wlr_layer_surface_v1 *surface) {
wl_resource_set_user_data(surface->resource, NULL);
surface->surface->role_data = NULL;
wl_list_remove(&surface->surface_destroy.link);
wl_list_remove(&surface->link);
free(surface->namespace);
free(surface);
}
Expand Down Expand Up @@ -440,7 +439,6 @@ static void layer_shell_handle_get_layer_surface(struct wl_client *wl_client,
surface, surface->resource);
wl_resource_set_implementation(surface->resource,
&layer_surface_implementation, surface, layer_surface_resource_destroy);
wl_list_insert(&shell->surfaces, &surface->link);
}

static const struct zwlr_layer_shell_v1_interface layer_shell_implementation = {
Expand Down Expand Up @@ -479,8 +477,6 @@ struct wlr_layer_shell_v1 *wlr_layer_shell_v1_create(struct wl_display *display)
return NULL;
}

wl_list_init(&layer_shell->surfaces);

struct wl_global *global = wl_global_create(display,
&zwlr_layer_shell_v1_interface, 2, layer_shell, layer_shell_bind);
if (!global) {
Expand Down

0 comments on commit 92c8585

Please sign in to comment.