aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernandez Hernandez <leohdz172@protonmail.com>2022-02-15 23:40:44 -0600
committerDaniel Eklöf <daniel@ekloef.se>2022-03-14 20:48:15 +0100
commit94ef1da455c19f8e87292a0212c18073fc15674d (patch)
tree5d958f944ade8b60739f974360c59c787f117d8b
parent44475f88115457ded3436a2f32cd72ae1af3efd0 (diff)
downloadwbg-94ef1da455c19f8e87292a0212c18073fc15674d.tar.gz
main: Do not render a frame on same-size configure
Based on https://github.com/emersion/mako/pull/410
-rw-r--r--main.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/main.c b/main.c
index 5c6eed3..e3bdaae 100644
--- a/main.c
+++ b/main.c
@@ -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);
}