Skip to content

Commit

Permalink
Change the mis-named 'traverse_flow_tree_preorder' to 'reflow'
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrubeck committed Aug 8, 2017
1 parent ee697a9 commit 832b811
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion components/layout/block.rs
Expand Up @@ -1551,7 +1551,7 @@ impl BlockFlow {
self.assign_inline_sizes(layout_context);
// Re-run layout on our children.
for child in flow::mut_base(self).children.iter_mut() {
sequential::traverse_flow_tree_preorder(child, layout_context, RelayoutMode::Force);
sequential::reflow(child, layout_context, RelayoutMode::Force);
}
// Assign our final-final block size.
self.assign_block_size(layout_context);
Expand Down
3 changes: 2 additions & 1 deletion components/layout/parallel.rs
Expand Up @@ -187,7 +187,8 @@ fn top_down_flow<'scope>(unsafe_flows: &[UnsafeFlow],
}
}

pub fn traverse_flow_tree_preorder(
/// Run the main layout passes in parallel.
pub fn reflow(
root: &mut Flow,
profiler_metadata: Option<TimerMetadata>,
time_profiler_chan: time::ProfilerChan,
Expand Down
3 changes: 2 additions & 1 deletion components/layout/sequential.rs
Expand Up @@ -24,7 +24,8 @@ pub fn resolve_generated_content(root: &mut Flow, layout_context: &LayoutContext
ResolveGeneratedContent::new(&layout_context).traverse(root, 0);
}

pub fn traverse_flow_tree_preorder(root: &mut Flow, layout_context: &LayoutContext, relayout_mode: RelayoutMode) {
/// Run the main layout passes sequentially.
pub fn reflow(root: &mut Flow, layout_context: &LayoutContext, relayout_mode: RelayoutMode) {
fn doit(flow: &mut Flow,
assign_inline_sizes: AssignISizes,
assign_block_sizes: AssignBSizes,
Expand Down
12 changes: 6 additions & 6 deletions components/layout_thread/lib.rs
Expand Up @@ -929,7 +929,7 @@ impl LayoutThread {
fn solve_constraints(layout_root: &mut Flow,
layout_context: &LayoutContext) {
let _scope = layout_debug_scope!("solve_constraints");
sequential::traverse_flow_tree_preorder(layout_root, layout_context, RelayoutMode::Incremental);
sequential::reflow(layout_root, layout_context, RelayoutMode::Incremental);
}

/// Performs layout constraint solving in parallel.
Expand All @@ -946,11 +946,11 @@ impl LayoutThread {

// NOTE: this currently computes borders, so any pruning should separate that
// operation out.
parallel::traverse_flow_tree_preorder(layout_root,
profiler_metadata,
time_profiler_chan,
layout_context,
traversal);
parallel::reflow(layout_root,
profiler_metadata,
time_profiler_chan,
layout_context,
traversal);
}

/// Computes the stacking-relative positions of all flows and, if the painting is dirty and the
Expand Down

0 comments on commit 832b811

Please sign in to comment.