admin管理员组文章数量:1352147
I'm drawing some shapes (arc, lineTo, etc.) to a using requestAnimationFrame
. Nothing too fancy, but I'm noticing some occasional jerky animation. I profiled using the Timeline inspector in Chrome dev tools, and am seeing a large amount of idle time per frame, some of which drops the FPS below 60 (see screenshot). Is there a known cause or resolution for this?
I'm drawing some shapes (arc, lineTo, etc.) to a using requestAnimationFrame
. Nothing too fancy, but I'm noticing some occasional jerky animation. I profiled using the Timeline inspector in Chrome dev tools, and am seeing a large amount of idle time per frame, some of which drops the FPS below 60 (see screenshot). Is there a known cause or resolution for this?
- 1 Similar questions: one, two, three. No helpful info. A few references to this G+ post by Nat Duca, but I'm not doing anything with 3D transforms, so I don't think it's applicable. – endemic Commented Apr 22, 2014 at 10:15
- 2 From DevTools documentation: "You may notice regions of a frame that are light-gray or clear (hollow). These regions indicate, respectively: 1.) Activity that was not instrumented by DevTools 2.) Idle time between display refresh cycles. The frames in the recording below show both un-instrumented activity and idle time." However, that doesn't really explain how to fix the problem. If the clear section of the frame is idle time, why does it cause frames to skip? – endemic Commented Apr 22, 2014 at 10:16
- I have the same issue; frames finishing in like 3ms but with insane idle times, sometimes 200ms; what gives? broken dev tools? – AlexG Commented May 2, 2014 at 6:46
2 Answers
Reset to default 5Drawing shapes to a canvas is apparently putationally expensive, and must fall under "activity that was not instrumented by DevTools." I solved my performance issue by first drawing shapes to an offscreen canvas cache, then using drawImage
to copy back to the main canvas.
Compare those peaks to the memory graph. In my experience, large idle spikes seem to coincide with garbage collection.
本文标签: javascriptLarge quotidlequot bars in Chrome dev tools Frames TimelineStack Overflow
版权声明:本文标题:javascript - Large "idle" bars in Chrome dev tools Frames Timeline - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743910391a2560288.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论