aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/webrender_helpers.rs
diff options
context:
space:
mode:
authorGlenn Watson <github@intuitionlibrary.com>2017-10-16 08:35:07 +1000
committerGlenn Watson <github@intuitionlibrary.com>2017-10-16 16:33:24 +1000
commit4469f39f3fe9b214074b8cbff8685b8deabed9b3 (patch)
tree43b8f9d56ff2c50ef3b2a8035640248b67851190 /components/layout/webrender_helpers.rs
parent086c48210c1ea0b65c91e1b300f796758080871f (diff)
downloadservo-4469f39f3fe9b214074b8cbff8685b8deabed9b3.tar.gz
servo-4469f39f3fe9b214074b8cbff8685b8deabed9b3.zip
Update WR (details below):
* Add support for clip masks on text runs. * Fix atomic ordering of items with multiple shadows. * Update to bincode + ipc-channel with optimizations. * Fix some plane splitting precision errors. * Improve the anti-aliasing quality significantly. * Add internal ClipChain support. * Fix diacritic glyphs on Linux.
Diffstat (limited to 'components/layout/webrender_helpers.rs')
-rw-r--r--components/layout/webrender_helpers.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/webrender_helpers.rs b/components/layout/webrender_helpers.rs
index 8f86477e980..fbd5d423ddf 100644
--- a/components/layout/webrender_helpers.rs
+++ b/components/layout/webrender_helpers.rs
@@ -465,8 +465,8 @@ impl WebRenderDisplayItemConverter for DisplayItem {
color: item.color,
});
}
- DisplayItem::PopTextShadow(_) => {
- builder.pop_shadow();
+ DisplayItem::PopAllTextShadows(_) => {
+ builder.pop_all_shadows();
}
DisplayItem::Iframe(ref item) => {
let rect = item.base.bounds;