mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Further changes required by Servo
This commit is contained in:
parent
23d60c2195
commit
0b75c1d9d1
2 changed files with 17 additions and 3 deletions
|
@ -63,7 +63,10 @@ fn with_pool_in_place_scope<'scope, R>(
|
||||||
|
|
||||||
/// See documentation of the pref for performance characteristics.
|
/// See documentation of the pref for performance characteristics.
|
||||||
fn work_unit_max() -> usize {
|
fn work_unit_max() -> usize {
|
||||||
static_prefs::pref!("layout.css.stylo-work-unit-size") as usize
|
#[cfg(feature = "gecko")]
|
||||||
|
return static_prefs::pref!("layout.css.stylo-work-unit-size") as usize;
|
||||||
|
#[cfg(feature = "servo")]
|
||||||
|
return 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Do a DOM traversal for top-down and (optionally) bottom-up processing, generic over `D`.
|
/// Do a DOM traversal for top-down and (optionally) bottom-up processing, generic over `D`.
|
||||||
|
@ -124,7 +127,12 @@ where
|
||||||
discovered,
|
discovered,
|
||||||
root.as_node().opaque(),
|
root.as_node().opaque(),
|
||||||
work_unit_max,
|
work_unit_max,
|
||||||
static_prefs::pref!("layout.css.stylo-local-work-queue.in-main-thread") as usize,
|
(|| {
|
||||||
|
#[cfg(feature = "gecko")]
|
||||||
|
return static_prefs::pref!("layout.css.stylo-local-work-queue.in-main-thread") as usize;
|
||||||
|
#[cfg(feature = "servo")]
|
||||||
|
return 32;
|
||||||
|
})(),
|
||||||
PerLevelTraversalData { current_dom_depth: root.depth() },
|
PerLevelTraversalData { current_dom_depth: root.depth() },
|
||||||
maybe_scope,
|
maybe_scope,
|
||||||
traversal,
|
traversal,
|
||||||
|
|
|
@ -81,6 +81,7 @@ fn distribute_one_chunk<'a, 'scope, E, D>(
|
||||||
D: DomTraversal<E>,
|
D: DomTraversal<E>,
|
||||||
{
|
{
|
||||||
scope.spawn_fifo(move |scope| {
|
scope.spawn_fifo(move |scope| {
|
||||||
|
#[cfg(feature = "gecko")]
|
||||||
gecko_profiler_label!(Layout, StyleComputation);
|
gecko_profiler_label!(Layout, StyleComputation);
|
||||||
let mut tlc = tls.ensure(create_thread_local_context);
|
let mut tlc = tls.ensure(create_thread_local_context);
|
||||||
let mut context = StyleContext {
|
let mut context = StyleContext {
|
||||||
|
@ -92,7 +93,12 @@ fn distribute_one_chunk<'a, 'scope, E, D>(
|
||||||
items,
|
items,
|
||||||
traversal_root,
|
traversal_root,
|
||||||
work_unit_max,
|
work_unit_max,
|
||||||
static_prefs::pref!("layout.css.stylo-local-work-queue.in-worker") as usize,
|
(|| {
|
||||||
|
#[cfg(feature = "gecko")]
|
||||||
|
return static_prefs::pref!("layout.css.stylo-local-work-queue.in-worker") as usize;
|
||||||
|
#[cfg(feature = "servo")]
|
||||||
|
return 0;
|
||||||
|
})(),
|
||||||
traversal_data,
|
traversal_data,
|
||||||
Some(scope),
|
Some(scope),
|
||||||
traversal,
|
traversal,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue