mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Remove concept of Layers from Servo
Layers were a feature of the legacy drawing path. If we re-add them at some point, it probably makes more sense to make them a product of display list inspection. This change also remove a bunch of dead painting code.
This commit is contained in:
parent
e667e62f0c
commit
ccb7ab926a
21 changed files with 57 additions and 745 deletions
|
@ -933,11 +933,10 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF>
|
|||
self.handle_alert(pipeline_id, message, sender);
|
||||
}
|
||||
|
||||
FromScriptMsg::ScrollFragmentPoint(pipeline_id, layer_id, point, smooth) => {
|
||||
FromScriptMsg::ScrollFragmentPoint(pipeline_id, point, smooth) => {
|
||||
self.compositor_proxy.send(ToCompositorMsg::ScrollFragmentPoint(pipeline_id,
|
||||
layer_id,
|
||||
point,
|
||||
smooth));
|
||||
point,
|
||||
smooth));
|
||||
}
|
||||
|
||||
FromScriptMsg::GetClientWindow(send) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue