mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
26 lines
1.3 KiB
Java
26 lines
1.3 KiB
Java
package androidx.compose.ui.node;
|
|
|
|
import androidx.compose.ui.Modifier;
|
|
import kotlin.Metadata;
|
|
|
|
/* compiled from: LayoutNodeDrawScope.kt */
|
|
@Metadata(d1 = {"\u0000\f\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u001a\u000e\u0010\u0000\u001a\u0004\u0018\u00010\u0001*\u00020\u0002H\u0002¨\u0006\u0003"}, d2 = {"nextDrawNode", "Landroidx/compose/ui/Modifier$Node;", "Landroidx/compose/ui/node/DelegatableNode;", "ui_release"}, k = 2, mv = {1, 8, 0}, xi = 48)
|
|
/* loaded from: classes.dex */
|
|
public final class LayoutNodeDrawScopeKt {
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public static final Modifier.Node nextDrawNode(DelegatableNode delegatableNode) {
|
|
int m4091constructorimpl = NodeKind.m4091constructorimpl(4);
|
|
int m4091constructorimpl2 = NodeKind.m4091constructorimpl(2);
|
|
Modifier.Node child = delegatableNode.getNode().getChild();
|
|
if (child == null || (child.getAggregateChildKindSet() & m4091constructorimpl) == 0) {
|
|
return null;
|
|
}
|
|
while (child != null && (child.getKindSet() & m4091constructorimpl2) == 0) {
|
|
if ((child.getKindSet() & m4091constructorimpl) != 0) {
|
|
return child;
|
|
}
|
|
child = child.getChild();
|
|
}
|
|
return null;
|
|
}
|
|
}
|