mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
scene/wlr_scene:fix judgment of invisible node
This commit is contained in:
parent
525506559a
commit
6a11256cd0
1 changed files with 1 additions and 2 deletions
|
@ -1272,10 +1272,9 @@ static bool scene_node_invisible(struct wlr_scene_node *node) {
|
|||
if (node->type == WLR_SCENE_NODE_TREE) {
|
||||
return true;
|
||||
} else if (node->type == WLR_SCENE_NODE_RECT) {
|
||||
float *clear = (float[4]){ 0.f, 0.f, 0.f, 0.f };
|
||||
struct wlr_scene_rect *rect = scene_rect_from_node(node);
|
||||
|
||||
return memcmp(rect->color, clear, sizeof(float) * 4) == 0;
|
||||
return rect->color[3] == 0.f;
|
||||
} else if (node->type == WLR_SCENE_NODE_BUFFER) {
|
||||
struct wlr_scene_buffer *buffer = wlr_scene_buffer_from_node(node);
|
||||
|
||||
|
|
Loading…
Reference in a new issue