mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-25 06:05:58 +01:00
wlr_scene: Add opaque region blend mode optimization
If we are only rendering within a region of the surface that is advertised as opaque, we can choose no blending
This commit is contained in:
parent
9b9ee51b09
commit
ea3c6fde3a
1 changed files with 10 additions and 2 deletions
|
@ -1089,7 +1089,6 @@ struct wlr_scene_node *wlr_scene_node_at(struct wlr_scene_node *node,
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void scene_node_render(struct wlr_scene_node *node, const struct render_data *data) {
|
static void scene_node_render(struct wlr_scene_node *node, const struct render_data *data) {
|
||||||
int x, y;
|
int x, y;
|
||||||
wlr_scene_node_coords(node, &x, &y);
|
wlr_scene_node_coords(node, &x, &y);
|
||||||
|
@ -1114,6 +1113,12 @@ static void scene_node_render(struct wlr_scene_node *node, const struct render_d
|
||||||
scene_node_get_size(node, &dst_box.width, &dst_box.height);
|
scene_node_get_size(node, &dst_box.width, &dst_box.height);
|
||||||
scale_box(&dst_box, data->scale);
|
scale_box(&dst_box, data->scale);
|
||||||
|
|
||||||
|
pixman_region32_t opaque;
|
||||||
|
pixman_region32_init(&opaque);
|
||||||
|
scene_node_opaque_region(node, x, y, &opaque);
|
||||||
|
scale_output_damage(&opaque, data->scale);
|
||||||
|
pixman_region32_subtract(&opaque, &render_region, &opaque);
|
||||||
|
|
||||||
transform_output_box(&dst_box, data);
|
transform_output_box(&dst_box, data);
|
||||||
transform_output_damage(&render_region, data);
|
transform_output_damage(&render_region, data);
|
||||||
|
|
||||||
|
@ -1157,12 +1162,15 @@ static void scene_node_render(struct wlr_scene_node *node, const struct render_d
|
||||||
.clip = &render_region,
|
.clip = &render_region,
|
||||||
.alpha = &scene_buffer->opacity,
|
.alpha = &scene_buffer->opacity,
|
||||||
.filter_mode = scene_buffer->filter_mode,
|
.filter_mode = scene_buffer->filter_mode,
|
||||||
|
.blend_mode = pixman_region32_not_empty(&opaque) ?
|
||||||
|
WLR_RENDER_BLEND_MODE_PREMULTIPLIED : WLR_RENDER_BLEND_MODE_NONE,
|
||||||
});
|
});
|
||||||
|
|
||||||
wl_signal_emit_mutable(&scene_buffer->events.output_present, data->output);
|
wl_signal_emit_mutable(&scene_buffer->events.output_present, data->output);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pixman_region32_fini(&opaque);
|
||||||
pixman_region32_fini(&render_region);
|
pixman_region32_fini(&render_region);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue