From 197ea3ca20879b29fca41a07cf43e5b04b9c5083 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 26 Oct 2020 16:36:40 +0100 Subject: Optimizations --- apps/wm.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'apps/wm.c') diff --git a/apps/wm.c b/apps/wm.c index 954ec4e..ed1a4dd 100644 --- a/apps/wm.c +++ b/apps/wm.c @@ -74,13 +74,15 @@ static void redraw_all() struct node *iterator = contexts->head; while (iterator != NULL) { struct context *ctx = iterator->data; - if (ctx != focused && !(ctx->flags & WF_RELATIVE)) + if (ctx != focused && !(ctx->flags & WF_RELATIVE)) { gfx_ctx_on_ctx(&exchange, ctx, ctx->x, ctx->y); + } iterator = iterator->next; } - if (focused) + if (focused) { gfx_ctx_on_ctx(&exchange, focused, focused->x, focused->y); + } memcpy(direct.fb, exchange.fb, exchange.pitch * exchange.height); } -- cgit v1.2.3