1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

LibWeb: Let HTML::EventLoop drive animation frame callbacks

This commit is contained in:
Andreas Kling 2021-10-03 16:28:14 +02:00
parent ae71e5f99b
commit 81ef2b646e
3 changed files with 36 additions and 6 deletions

View file

@ -116,4 +116,6 @@ private:
HashMap<i32, NonnullRefPtr<RequestAnimationFrameCallback>> m_request_animation_frame_callbacks;
};
void run_animation_frame_callbacks(DOM::Document&, double now);
}