sway

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

commit 3a68c012a9a32a0cda4fff772a370558d52077be
parent 50219564c2492e4ce0bc788f062554f8a99d86f4
Author: emersion <contact@emersion.fr>
Date:   Fri, 30 Mar 2018 17:24:29 -0400

Remove debug, add explicit TODO

Diffstat:
Msway/desktop/output.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -198,7 +198,6 @@ static void render_layer(struct sway_output *output, static void render_output(struct sway_output *output, struct timespec *when, pixman_region32_t *damage) { - wlr_log(L_DEBUG, "render"); struct wlr_output *wlr_output = output->wlr_output; struct wlr_renderer *renderer = wlr_backend_get_renderer(wlr_output->backend); @@ -210,7 +209,7 @@ static void render_output(struct sway_output *output, struct timespec *when, goto renderer_end; } - // TODO + // TODO: don't damage the whole output here int width, height; wlr_output_transformed_resolution(wlr_output, &width, &height); pixman_region32_union_rect(damage, damage, 0, 0, width, height);