fullscreen-shell: add release request handler

This commit is contained in:
Vasyl Vavrychuk 2023-02-17 12:23:45 +02:00
parent c73e20628a
commit 58067a2084
1 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,11 @@
static const struct zwp_fullscreen_shell_v1_interface shell_impl;
static void shell_handle_release(struct wl_client *client,
struct wl_resource *resource) {
wl_resource_destroy(resource);
}
static struct wlr_fullscreen_shell_v1 *shell_from_resource(
struct wl_resource *resource) {
assert(wl_resource_instance_of(resource,
@ -58,6 +63,7 @@ static void shell_handle_present_surface_for_mode(struct wl_client *client,
}
static const struct zwp_fullscreen_shell_v1_interface shell_impl = {
.release = shell_handle_release,
.present_surface = shell_handle_present_surface,
.present_surface_for_mode = shell_handle_present_surface_for_mode,
};