sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 202ee511503bc7c6a18dec440ac3cdb8d5e8f859
parent 7c44ca95f9aef526c6cfa8c2d3704af39755f38b
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 17 Jun 2018 14:55:29 -0700

Merge pull request #2143 from vilhalmer/mark-pool-buffers-busy

Set pool_buffers busy when handing them out
Diffstat:
Mclient/pool-buffer.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/client/pool-buffer.c b/client/pool-buffer.c @@ -144,5 +144,6 @@ struct pool_buffer *get_next_buffer(struct wl_shm *shm, return NULL; } } + buffer->busy = true; return buffer; }