From 00c2bae1d3569f76cf318be789679dd50401577c Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Mon, 30 Aug 2021 08:11:18 -0500 Subject: [PATCH] scene: remove redundant empty-region check in render_texture() --- types/wlr_scene.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/types/wlr_scene.c b/types/wlr_scene.c index be568c8e..30faa9f0 100644 --- a/types/wlr_scene.c +++ b/types/wlr_scene.c @@ -327,14 +327,14 @@ static void render_texture(struct wlr_output *output, pixman_region32_init(&damage); pixman_region32_init_rect(&damage, box->x, box->y, box->width, box->height); pixman_region32_intersect(&damage, &damage, output_damage); - if (pixman_region32_not_empty(&damage)) { - int nrects; - pixman_box32_t *rects = pixman_region32_rectangles(&damage, &nrects); - for (int i = 0; i < nrects; ++i) { - scissor_output(output, &rects[i]); - wlr_render_texture_with_matrix(renderer, texture, matrix, 1.0); - } + + int nrects; + pixman_box32_t *rects = pixman_region32_rectangles(&damage, &nrects); + for (int i = 0; i < nrects; ++i) { + scissor_output(output, &rects[i]); + wlr_render_texture_with_matrix(renderer, texture, matrix, 1.0); } + pixman_region32_fini(&damage); }