From: Matthias Clasen Date: Tue, 25 Apr 2023 11:30:09 +0000 (+0200) Subject: gsk: Don't misuse bitwise operators X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~376^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2263db6259767b46d716b540c1faf9ae83cd1a76;p=gtk4.git gsk: Don't misuse bitwise operators We should use || for booleans, not |=. --- diff --git a/gsk/gskrendernodeimpl.c b/gsk/gskrendernodeimpl.c index 56ee6895e5..f36638e821 100644 --- a/gsk/gskrendernodeimpl.c +++ b/gsk/gskrendernodeimpl.c @@ -3148,12 +3148,12 @@ gsk_container_node_new (GskRenderNode **children, self->children[i] = gsk_render_node_ref (children[i]); self->disjoint &= !graphene_rect_intersection (&bounds, &(children[i]->bounds), NULL); graphene_rect_union (&bounds, &(children[i]->bounds), &bounds); - node->prefers_high_depth |= gsk_render_node_prefers_high_depth (children[i]); - node->offscreen_for_opacity |= children[i]->offscreen_for_opacity; + node->prefers_high_depth = node->prefers_high_depth || gsk_render_node_prefers_high_depth (children[i]); + node->offscreen_for_opacity = node->offscreen_for_opacity || children[i]->offscreen_for_opacity; } graphene_rect_init_from_rect (&node->bounds, &bounds); - node->offscreen_for_opacity |= !self->disjoint; + node->offscreen_for_opacity = node->offscreen_for_opacity || !self->disjoint; } return node; @@ -6034,7 +6034,7 @@ gsk_gl_shader_node_new (GskGLShader *shader, for (guint i = 0; i < n_children; i++) { self->children[i] = gsk_render_node_ref (children[i]); - node->prefers_high_depth |= gsk_render_node_prefers_high_depth (children[i]); + node->prefers_high_depth = node->prefers_high_depth || gsk_render_node_prefers_high_depth (children[i]); } }