現在、さまざまなプラットフォームで WebKit の CSS アニメーションのパフォーマンスを評価しようとしています。アニメーションの実行中にレンダリングされる 1 秒あたりのフレーム数を測定する WebKit のビルドを計測する方法を見つけることができませんでした。これを行う方法を知っている人はいますか?
1 に答える
I decided to ask this same question on the WebKit dev list and got a decent response. I'll re-iterate that here.
Basically CSS animations in WebKit could be either rendered using one of 2 paths. The software rendering path, or the hardware path. In the case of the software path, the render loop is based on a timer and as such using a timer and counting how quickly the timer can fire will give an approximate FPS measurement. In the case of the hardware path the hardware will determine the path and there is no way to gather this information currently.
I'm rephrasing the response I got a bit, but this is the thrust of it I believe.