mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Do not wake up embedder on each animation tick
This commit is contained in:
parent
b7aaff4995
commit
016d9a62ab
4 changed files with 19 additions and 10 deletions
|
@ -125,7 +125,9 @@ impl Debug for Msg {
|
|||
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
|
||||
match *self {
|
||||
Msg::ShutdownComplete => write!(f, "ShutdownComplete"),
|
||||
Msg::ChangeRunningAnimationsState(..) => write!(f, "ChangeRunningAnimationsState"),
|
||||
Msg::ChangeRunningAnimationsState(_, state) => {
|
||||
write!(f, "ChangeRunningAnimationsState({:?})", state)
|
||||
},
|
||||
Msg::SetFrameTree(..) => write!(f, "SetFrameTree"),
|
||||
Msg::Recomposite(..) => write!(f, "Recomposite"),
|
||||
Msg::TouchEventProcessed(..) => write!(f, "TouchEventProcessed"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue