From bb3b9d0156e02d407f0a1278c8bdfcccc5c078b9 Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Fri, 18 Aug 2017 18:23:55 +0200 Subject: [PATCH] wlr_surface: use post_event instead of queue This fixes not sending anything back to the client if the only event it's waiting for is a buffer release, and nothing else is in the pipe. Workaround for #102 - there probably is a better solution as weston and wlc do not need to use post_event here. --- types/wlr_surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/wlr_surface.c b/types/wlr_surface.c index cb0aa27f..240360a1 100644 --- a/types/wlr_surface.c +++ b/types/wlr_surface.c @@ -292,7 +292,7 @@ release: pixman_region32_fini(&surface->current.buffer_damage); pixman_region32_init(&surface->current.buffer_damage); - wl_resource_queue_event(surface->current.buffer, WL_BUFFER_RELEASE); + wl_resource_post_event(surface->current.buffer, WL_BUFFER_RELEASE); surface->current.buffer = NULL; }