Re: [PATCH] compositor: fix starvation of wl_buffer::release

2017-09-26 Thread Matt Hoosier
Done: https://lists.freedesktop.org/archives/wayland-devel/2017-September/035191.html On Tue, Sep 26, 2017 at 2:28 AM, Pekka Paalanen wrote: > On Mon, 25 Sep 2017 10:31:35 -0500 > Matt Hoosier wrote: > >> This change replaces a queued emission of buffer-release events (which >> is prone to star

Re: [PATCH] compositor: fix starvation of wl_buffer::release

2017-09-26 Thread Pekka Paalanen
On Mon, 25 Sep 2017 10:31:35 -0500 Matt Hoosier wrote: > This change replaces a queued emission of buffer-release events (which > is prone to starvation) with a regular event emission. This means that > client programs no longer need to secretly install surface frame > listeners just to guarantee

[PATCH] compositor: fix starvation of wl_buffer::release

2017-09-25 Thread Matt Hoosier
This change replaces a queued emission of buffer-release events (which is prone to starvation) with a regular event emission. This means that client programs no longer need to secretly install surface frame listeners just to guarantee that they get correctly notified of buffer lifecycle events. Si