pub fn compute_layout(
    to_update: Query<'_, '_, &'static mut LayoutRect>,
    nodes: Query<'_, '_, (Entity, &'static Node, Option<&'static Children>)>,
    names: Query<'_, '_, &'static Name>,
    roots: Query<'_, '_, (Entity, &'static Root, &'static Children)>,
    last_layout_change: ResMut<'_, LastLayoutChange>,
    system_tick: SystemChangeTick,
    __sysfail_time: TimeParam<'_>,
    __sysfail_logged_errors: LoggedErrorsParam<'_, Result<(), ComputeLayoutError>>
)
Expand description

Run the layout algorithm.