Backed out changeset 28c7b58df8e4 (bug 1696842) for causing perf regressions. CLOSED TREE

This commit is contained in:
Sandor Molnar 2021-07-15 23:41:25 +03:00
Родитель 5e626fc599
Коммит d7d1a498e5
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -6276,13 +6276,13 @@ impl PicturePrimitive {
// on whether we want to zoom in high-performance or high-quality mode.
true
}
PictureCompositeMode::MixBlend(..) |
PictureCompositeMode::ComponentTransferFilter(..) |
PictureCompositeMode::SvgFilter(..) => {
// Filters must be applied before transforms, to do this, we can mark this picture as establishing a raster root.
true
}
PictureCompositeMode::MixBlend(..) |
PictureCompositeMode::Filter(..) |
PictureCompositeMode::ComponentTransferFilter(..) |
PictureCompositeMode::Blit(..) => {
// TODO(gw): As follow ups, individually move each of these composite modes to create raster roots.
surface_to_parent_transform.is_perspective()