Hacker News new | ask | show | jobs
by ck2 5576 days ago
When I update to setZeroTimeout in those canvas vs svg demos, the drawing is so fast there is horizontal tearing and the frame rates are in the thousands.

Which means the FPS with setInterval is actually measuring how long it takes setInterval to fire, not how long it's taking to draw under the different methods.

2 comments

But that's a feature you don't really want. You're blowing away your cpu on something that can only display 60 times a second.
The code in question is a benchmark of how fast two different render APIs work. The only way to do that reliably is to take the question of the timer firing rate out of the equation. I doubt you'd use setZeroTimeout in most realworld environments.
Very interesting. Do you think it will make a difference on mobile devices?