I was looking at a website I found and the performance of it was very poor. It was drawing one frame every 7 seconds. On the other hand Chrome is silky smooth. Here's the website: https://ubähnchen.vercel.app/en Here's a Firefox Profiler profile: https://share.firefox.dev/3CVEIh1 If you look at the profile, the content process shows that the nearly all the time is spent inside `mozilla::gfx::DrawTargetWebgl::DrawSurfaceWithShadow`. It's probably because we do this on software and Chrome uses hardware acceleration. Would doing the same for us also fixes this issue?
Bug 1789268 Comment 0 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
I was looking at a website I found and the performance of it was very poor. It was drawing one frame every 7 seconds. On the other hand Chrome is silky smooth. Here's the website: https://ubähnchen.vercel.app/en Here's a Firefox Profiler profile: https://share.firefox.dev/3CVEIh1 If you look at the profile, the content process shows that the nearly all the time is spent inside `mozilla::gfx::DrawTargetWebgl::DrawSurfaceWithShadow`. It's probably because we do this on software and Chrome uses hardware acceleration. Would doing the same for us also fix this issue?