diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2017-06-06 10:36:01 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2017-06-06 11:50:57 -0700 |
commit | ea154d827859ad7b509c265789b1bc16571064c7 (patch) | |
tree | c96c4cbbb2e884f7b28d6cc01946e6e8dbdb3a25 /components/layout/parallel.rs | |
parent | a158b106f491fb64169789e30f0b1794fe9cfff1 (diff) | |
download | servo-ea154d827859ad7b509c265789b1bc16571064c7.tar.gz servo-ea154d827859ad7b509c265789b1bc16571064c7.zip |
Reduce parallel layout chunk size to 16
Diffstat (limited to 'components/layout/parallel.rs')
-rw-r--r-- | components/layout/parallel.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/layout/parallel.rs b/components/layout/parallel.rs index ada231b8119..2d97c29d761 100644 --- a/components/layout/parallel.rs +++ b/components/layout/parallel.rs @@ -23,10 +23,7 @@ use traversal::AssignBSizes; pub use style::parallel::traverse_dom; /// Traversal chunk size. -/// -/// FIXME(bholley): This is all likely very inefficient and should probably be -/// reworked to mirror the style system's parallel.rs. -pub const CHUNK_SIZE: usize = 64; +const CHUNK_SIZE: usize = 16; #[allow(dead_code)] fn static_assertion(node: UnsafeNode) { |