removed src_box

This commit is contained in:
William McKinnon 2023-07-23 23:40:09 -04:00
parent b03ca3b50d
commit 2ed02c90a8

View file

@ -310,9 +310,7 @@ void render_blur(bool optimized, struct sway_output *output, pixman_region32_t *
struct decoration_data deco_data = get_undecorated_decoration_data(); struct decoration_data deco_data = get_undecorated_decoration_data();
deco_data.corner_radius = corner_radius; deco_data.corner_radius = corner_radius;
deco_data.has_titlebar = should_round_top; deco_data.has_titlebar = should_round_top;
// TODO: contribute wlroots function to allow creating an fbox from a box? render_texture(wlr_output, &damage, &buffer->texture, NULL, dst_box, matrix, deco_data);
const struct wlr_fbox src_box = { monitor_box.x, monitor_box.y, monitor_box.width, monitor_box.height };
render_texture(wlr_output, &damage, &buffer->texture, &src_box, dst_box, matrix, deco_data);
damage_finish: damage_finish:
pixman_region32_fini(&damage); pixman_region32_fini(&damage);