diff options
author | Leonardo Hernandez Hernandez <leohdz172@protonmail.com> | 2022-02-15 23:40:44 -0600 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2022-03-14 20:48:15 +0100 |
commit | 94ef1da455c19f8e87292a0212c18073fc15674d (patch) | |
tree | 5d958f944ade8b60739f974360c59c787f117d8b /main.c | |
parent | 44475f88115457ded3436a2f32cd72ae1af3efd0 (diff) | |
download | wbg-94ef1da455c19f8e87292a0212c18073fc15674d.tar.gz |
main: Do not render a frame on same-size configure
Based on https://github.com/emersion/mako/pull/410
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -116,10 +116,22 @@ layer_surface_configure(void *data, struct zwlr_layer_surface_v1 *surface, uint32_t serial, uint32_t w, uint32_t h) { struct output *output = data; + zwlr_layer_surface_v1_ack_configure(surface, serial); + + /* If the size of the last committed buffer has not change, do not + * render a new buffer because it will be identical to the old one. */ + /* TODO: should we check the scale? */ + if (output->configured && + output->render_width == w && + output->render_height == h) + { + wl_surface_commit(output->surf); + return; + } + output->render_width = w; output->render_height = h; output->configured = true; - zwlr_layer_surface_v1_ack_configure(surface, serial); render(output); } |