aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2019-09-06 17:11:36 +0200
committerSimon Sapin <simon.sapin@exyr.org>2019-09-06 17:15:53 +0200
commite9f7079c7066f032ba94a91317f4aa012e18d94c (patch)
tree4984479566176a34455ce4b01a7bb58c4a7b18e1 /components/layout
parent526619a78aa88944e917ab97c0f969eceea3ebc7 (diff)
downloadservo-e9f7079c7066f032ba94a91317f4aa012e18d94c.tar.gz
servo-e9f7079c7066f032ba94a91317f4aa012e18d94c.zip
Replace DisplayList::is_contentful with tracking during conversion to WR display lists
Diffstat (limited to 'components/layout')
-rw-r--r--components/layout/display_list/items.rs16
-rw-r--r--components/layout/display_list/webrender_helpers.rs38
2 files changed, 33 insertions, 21 deletions
diff --git a/components/layout/display_list/items.rs b/components/layout/display_list/items.rs
index de7e49d306e..f838a95bf08 100644
--- a/components/layout/display_list/items.rs
+++ b/components/layout/display_list/items.rs
@@ -137,22 +137,6 @@ impl DisplayList {
}
}
-impl gfx_traits::DisplayList for DisplayList {
- /// Analyze the display list to figure out if this may be the first
- /// contentful paint (i.e. the display list contains items of type text,
- /// image, non-white canvas or SVG). Used by metrics.
- fn is_contentful(&self) -> bool {
- for item in &self.list {
- match item {
- &DisplayItem::Text(_) | &DisplayItem::Image(_) => return true,
- _ => (),
- }
- }
-
- false
- }
-}
-
/// Display list sections that make up a stacking context. Each section here refers
/// to the steps in CSS 2.1 Appendix E.
///
diff --git a/components/layout/display_list/webrender_helpers.rs b/components/layout/display_list/webrender_helpers.rs
index 64333f41977..993e2b38cef 100644
--- a/components/layout/display_list/webrender_helpers.rs
+++ b/components/layout/display_list/webrender_helpers.rs
@@ -24,8 +24,17 @@ struct ClipScrollState {
active_spatial_id: SpatialId,
}
+/// Contentful paint, for the purpose of
+/// https://w3c.github.io/paint-timing/#first-contentful-paint
+/// (i.e. the display list contains items of type text,
+/// image, non-white canvas or SVG). Used by metrics.
+pub struct IsContentful(pub bool);
+
impl DisplayList {
- pub fn convert_to_webrender(&mut self, pipeline_id: PipelineId) -> DisplayListBuilder {
+ pub fn convert_to_webrender(
+ &mut self,
+ pipeline_id: PipelineId,
+ ) -> (DisplayListBuilder, IsContentful) {
let mut clip_ids = vec![None; self.clip_scroll_nodes.len()];
let mut spatial_ids = vec![None; self.clip_scroll_nodes.len()];
@@ -54,11 +63,14 @@ impl DisplayList {
1024 * 1024, // 1 MB of space
);
+ let mut is_contentful = IsContentful(false);
for item in &mut self.list {
- item.convert_to_webrender(&self.clip_scroll_nodes, &mut state, &mut builder);
+ is_contentful.0 |= item
+ .convert_to_webrender(&self.clip_scroll_nodes, &mut state, &mut builder)
+ .0;
}
- builder
+ (builder, is_contentful)
}
}
@@ -68,7 +80,7 @@ impl DisplayItem {
clip_scroll_nodes: &[ClipScrollNode],
state: &mut ClipScrollState,
builder: &mut DisplayListBuilder,
- ) {
+ ) -> IsContentful {
// Note: for each time of a display item, if we register one of `clip_ids` or `spatial_ids`,
// we also register the other one as inherited from the current state or the stack.
// This is not an ideal behavior, but it is compatible with the old WebRender model
@@ -96,15 +108,18 @@ impl DisplayItem {
DisplayItem::Rectangle(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
builder.push_item(&WrDisplayItem::Rectangle(item.item));
+ IsContentful(false)
},
DisplayItem::Text(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
builder.push_item(&WrDisplayItem::Text(item.item));
builder.push_iter(item.data.iter());
+ IsContentful(true)
},
DisplayItem::Image(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
builder.push_item(&WrDisplayItem::Image(item.item));
+ IsContentful(true)
},
DisplayItem::Border(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
@@ -112,24 +127,29 @@ impl DisplayItem {
builder.push_stops(item.data.as_ref());
}
builder.push_item(&WrDisplayItem::Border(item.item));
+ IsContentful(false)
},
DisplayItem::Gradient(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
builder.push_stops(item.data.as_ref());
builder.push_item(&WrDisplayItem::Gradient(item.item));
+ IsContentful(false)
},
DisplayItem::RadialGradient(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
builder.push_stops(item.data.as_ref());
builder.push_item(&WrDisplayItem::RadialGradient(item.item));
+ IsContentful(false)
},
DisplayItem::Line(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
builder.push_item(&WrDisplayItem::Line(item.item));
+ IsContentful(false)
},
DisplayItem::BoxShadow(ref mut item) => {
item.item.common = build_common_item_properties(&item.base, state);
builder.push_item(&WrDisplayItem::BoxShadow(item.item));
+ IsContentful(false)
},
DisplayItem::PushTextShadow(ref mut item) => {
let common = build_common_item_properties(&item.base, state);
@@ -141,9 +161,11 @@ impl DisplayItem {
item.shadow,
true,
);
+ IsContentful(false)
},
DisplayItem::PopAllTextShadows(_) => {
builder.push_item(&WrDisplayItem::PopAllShadows);
+ IsContentful(false)
},
DisplayItem::Iframe(ref mut item) => {
let common = build_common_item_properties(&item.base, state);
@@ -157,6 +179,7 @@ impl DisplayItem {
item.iframe.to_webrender(),
true,
);
+ IsContentful(false)
},
DisplayItem::PushStackingContext(ref mut item) => {
let stacking_context = &item.stacking_context;
@@ -222,8 +245,12 @@ impl DisplayItem {
};
builder.push_item(&WrDisplayItem::PushStackingContext(wr_item));
+ IsContentful(false)
+ },
+ DisplayItem::PopStackingContext(_) => {
+ builder.pop_stacking_context();
+ IsContentful(false)
},
- DisplayItem::PopStackingContext(_) => builder.pop_stacking_context(),
DisplayItem::DefineClipScrollNode(ref mut item) => {
let node = &clip_scroll_nodes[item.node_index.to_index()];
let item_rect = node.clip.main;
@@ -285,6 +312,7 @@ impl DisplayItem {
unreachable!("Found DefineClipScrollNode for Placeholder type node.");
},
};
+ IsContentful(false)
},
}
}