I have a CSS3 transition which is smooth as silk in Chrome, but choppy in (the latest version of) Firefox

I know that I can force GPU acceleration on a DOM object in Chrome by setting -webkit-transform: translateZ(0); on it

Is there an equivalent style I can add to force GPU acceleration in Firefox?

link|improve this question
1  
That seems like a hack. – BoltClock Jan 26 at 12:37
feedback

1 Answer

up vote 4 down vote accepted

Firefox GPU-accelerates by default when it can. So there's nothing to "force" GPU acceleration: if it's possible, it's already done.

link|improve this answer
when i use animations in Firefox it can get to 100% CPU.. I think the whole hardware accelerate thing is not working well in Gecko – vsync Apr 25 at 12:34
It really depends on your hardware. OS, drivers, and the like... But yes, there are cases that Gecko doesn't accelerate that WebKit does, and vice versa. – Boris Zbarsky Apr 25 at 13:20
I have a machine with 16GB RAM, SSD and 4 CORE CPU, with a good graphic card, and still a bunch of simple animation crank it up.. – vsync Apr 25 at 13:30
Which OS? Does about:support say anything useful in the graphics section? – Boris Zbarsky Apr 26 at 3:45
windows7. anything useful? my graphic card is ATI Radeon HD 4300, but even so, a mighty GPU should handle simple animations tasks done 15 years ago in computer games.. – vsync Apr 26 at 14:22
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.