mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
wlr_scene: Use cached node coordinates where possible
Avoids recalculating node coordinates.
This commit is contained in:
parent
9be72ec4ca
commit
b18a849fc3
1 changed files with 2 additions and 6 deletions
|
@ -1553,8 +1553,7 @@ static bool scene_entry_try_direct_scanout(struct render_list_entry *entry,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct wlr_box node_box;
|
struct wlr_box node_box = { .x = entry->x, .y = entry->y };
|
||||||
wlr_scene_node_coords(node, &node_box.x, &node_box.y);
|
|
||||||
scene_node_get_size(node, &node_box.width, &node_box.height);
|
scene_node_get_size(node, &node_box.width, &node_box.height);
|
||||||
|
|
||||||
if (!wlr_box_equal(&data->logical, &node_box)) {
|
if (!wlr_box_equal(&data->logical, &node_box)) {
|
||||||
|
@ -1807,9 +1806,6 @@ bool wlr_scene_output_build_state(struct wlr_scene_output *scene_output,
|
||||||
for (int i = list_len - 1; i >= 0; i--) {
|
for (int i = list_len - 1; i >= 0; i--) {
|
||||||
struct render_list_entry *entry = &list_data[i];
|
struct render_list_entry *entry = &list_data[i];
|
||||||
|
|
||||||
int x, y;
|
|
||||||
wlr_scene_node_coords(entry->node, &x, &y);
|
|
||||||
|
|
||||||
// We must only cull opaque regions that are visible by the node.
|
// We must only cull opaque regions that are visible by the node.
|
||||||
// The node's visibility will have the knowledge of a black rect
|
// The node's visibility will have the knowledge of a black rect
|
||||||
// that may have been omitted from the render list via the black
|
// that may have been omitted from the render list via the black
|
||||||
|
@ -1817,7 +1813,7 @@ bool wlr_scene_output_build_state(struct wlr_scene_output *scene_output,
|
||||||
// rendering in that black rect region, consider the node's visibility.
|
// rendering in that black rect region, consider the node's visibility.
|
||||||
pixman_region32_t opaque;
|
pixman_region32_t opaque;
|
||||||
pixman_region32_init(&opaque);
|
pixman_region32_init(&opaque);
|
||||||
scene_node_opaque_region(entry->node, x, y, &opaque);
|
scene_node_opaque_region(entry->node, entry->x, entry->y, &opaque);
|
||||||
pixman_region32_intersect(&opaque, &opaque, &entry->node->visible);
|
pixman_region32_intersect(&opaque, &opaque, &entry->node->visible);
|
||||||
|
|
||||||
pixman_region32_translate(&opaque, -scene_output->x, -scene_output->y);
|
pixman_region32_translate(&opaque, -scene_output->x, -scene_output->y);
|
||||||
|
|
Loading…
Reference in a new issue