mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-14 01:15:59 +01:00
Fix surface destruction
This commit is contained in:
parent
cf9ee6ce3f
commit
fb58307a50
1 changed files with 1 additions and 2 deletions
|
@ -6,8 +6,6 @@
|
|||
#include <wlr/types/wlr_surface.h>
|
||||
|
||||
static void surface_destroy(struct wl_client *client, struct wl_resource *resource) {
|
||||
struct wlr_surface *surface = wl_resource_get_user_data(resource);
|
||||
wl_signal_emit(&surface->signals.destroy, surface);
|
||||
wl_resource_destroy(resource);
|
||||
}
|
||||
|
||||
|
@ -104,6 +102,7 @@ static void destroy_surface(struct wl_resource *resource) {
|
|||
struct wlr_surface *surface = wl_resource_get_user_data(resource);
|
||||
wl_signal_emit(&surface->signals.destroy, surface);
|
||||
wlr_texture_destroy(surface->texture);
|
||||
free(surface);
|
||||
}
|
||||
|
||||
struct wlr_surface *wlr_surface_create(struct wl_resource *res,
|
||||
|
|
Loading…
Reference in a new issue