Test if Hardware Acceleration has been enabled for a CSS animation?

后端 未结 1 1126
隐瞒了意图╮
隐瞒了意图╮ 2020-12-07 20:59

How can I tell (for testing purposes) if Hardware Acceleration has been enabled for a CSS animation?

I have the following code which essentially enlarges an

相关标签:
1条回答
  • 2020-12-07 21:40

    Overview

    A CSS property transition on an element is hardware-accelerated if all these conditions are met:

    1. Hardware-accelerated layer compositing is enabled in the browser
    2. The CSS property being transitioned is acceleratable
    3. The element has been given its own compositing layer

    Generally, the requirements for these conditions are:

    1. The relevant hardware-acceleration options must be enabled, and the device's GPU and graphics drivers must not be blacklisted
    2. Only compositing CSS properties (opacity, transform: translate / scale / rotate, etc) are acceleratable
    3. Each browser has specific reasons for deciding whether to give an element its own compositing layer (or it can be forced by using a "go faster" hack like transform: translate3d)

    Hardware-accelerated layer compositing

    To identify whether this is enabled:

    Chrome

    1. General acceleration

    • Go to chrome://settings
    • Click the + Show advanced settings button
    • In the System section, inspect the status of the Use hardware acceleration when available checkbox

    If acceleration is enabled, then:

    2. Accelerated compositing

    • Go to chrome://gpu
    • In the Graphics Feature Status section, inspect the value of Compositing. This will be one of the following:
      • Hardware accelerated
      • Software only, hardware acceleration unavailable

    More details on the Software Compositor from the docs:

    In some situations hardware compositing is infeasible, e.g. if the device's graphics drivers are blacklisted or the device lacks a GPU entirely. For these situations is an alternative implementation to the GL renderer called the SoftwareRenderer

    (Note: Chrome also has a Legacy Software Rendering Path, which is "still lingering as of May 2014, but will soon be removed entirely in Blink.")

    Here's a great article with more info: Accelerated Rendering in Chrome.

    Firefox

    1. General acceleration

    • Go to Firefox's Preferences
    • Go to the Advanced tab
    • Go to the General subtab
    • Inspect the status of the Use hardware acceleration when available checkbox

    If acceleration is enabled, then:

    2. Layer acceleration

    • Go to about:config
    • Search for layers.acceleration.disabled

    If layer acceleration is enabled (if the value is false), then:

    3. GPU accelerated windows

    • Go to about:support
    • In the Graphics section, inspect the value of GPU Accelerated Windows

    If it does not begin with 0/, and a rendering API is shown (eg. OpenGL, Direct3D), then GPU acceleration is active.

    Safari

    • Enable Safari's debug menu by running this command in the Terminal:
      defaults write com.apple.Safari IncludeInternalDebugMenu 1
    • Open (or restart) Safari
    • In Safari's Debug menu, inspect the status of the Disable Accelerated Compositing option in the Drawing/Compositing Flags submenu

    Acceleratable CSS properties

    The only CSS property transitions which can be hardware-accelerated are those which occur in the compositing stage of the rendering process. For example:

    • opacity
    • transform: translate and its friends: translateX, translateY, translateZ, translate3d
    • transform: scale and its friends: scaleX, scaleY, scaleZ, scale3d
    • transform: rotate and its friends: rotateX, rotateY, rotateZ, rotate3d

    To fully benefit from acceleration, no non-compositing properties must be transitioned. For example:

    • A transition on just transform: translate can receive the full benefit of acceleration (because the element's layer can simply be recomposited by the GPU).
    • A transition on both transform: translate and width will receive almost no benefit from acceleration (because a transition on width causes the element's layer to be repainted by the CPU for every animation frame).

    Compositing layers & coloured borders

    The browser's rendering engine decides (based on user preferences, CSS styles, etc) whether or not to give an element its own compositing layer.

    For example, Chrome has this list of reasons, and also has this option in chrome://flags:

    Compositing for RenderLayers with transitions
    Enabling this option will make RenderLayers with a transition on opacity, transform or filter have their own composited layer.

    If an element has not been given its own layer, then no CSS transitions on that element will be accelerated.

    transform: translate3d (the "go faster" hack) generally forces an element to be given its own layer.

    But even if an element has been given its own layer, transitions on non-compositing properties (width, height, left, top, etc) still cannot be accelerated, because they occur before the compositing stage (eg. in the layout or paint stages). @ChrisSpittles This is why you saw no visual improvement after adding transform: translate3d.

    Most browsers can display coloured borders around composited layers, to make them easy to identify for development/debugging:

    Chrome

    Displaying the borders of composited layers can be done in one of two ways:

    • For all pages — Go to chrome://flags and enable Composited render layer borders ("Renders a border around composited Render Layers to help debug and study layer compositing"). You'll need to relaunch Chrome for this to take effect.
    • For individual pages — Open the Developer Tools, then open the Drawer, select the Rendering tab, and enable Show composited layer borders. Now, opening the Developer Tools on any page will cause layer borders to be shown on that page.

    Now trigger the CSS transition on the element. If it has a coloured border, then it has its own compositing layer.

    The border colours and their meanings are defined in debug_colors.cc. More details here and here.

    Firefox

    To draw the borders of composited layers:

    • Go to about:config
    • Search for layers.draw-borders and enable it

    Now trigger the CSS transition on the element. If it has a coloured border, then it has its own compositing layer.

    The border colours and their meanings are defined in Compositor::DrawDiagnosticsInternal.

    Safari

    (This does not work for me with Safari 7.0.3, but it seems it did work for some people as recently as last year.)

    Launch Safari from the Terminal with the CA_COLOR_OPAQUE boolean environment variable set:

    $ CA_COLOR_OPAQUE=1 /Applications/Safari.app/Contents/MacOS/Safari
    

    Alternative method:

    $ export CA_COLOR_OPAQUE=1 
    $ /Applications/Safari.app/Contents/MacOS/Safari
    

    Apparently, hardware-accelerated layers should be coloured red. More details here and here.

    Update:

    Here's an alternative method which works for me in Safari 7.0.3 (credit to David Calhoun):

    • In Safari's Debug menu, enable Show Compositing Borders in the Drawing/Compositing Flags submenu

    Now trigger the CSS transition on the element. If it has a coloured border, then it has its own compositing layer.


    References

    For more details, check out these excellent articles:

    • http://blogs.adobe.com/webplatform/2014/03/18/css-animations-and-transitions-performance/
    • http://www.html5rocks.com/en/tutorials/speed/high-performance-animations/
    • http://www.html5rocks.com/en/mobile/optimization-and-performance/
    • http://ariya.blogspot.co.uk/2011/07/fluid-animation-with-accelerated.html
    0 讨论(0)
提交回复
热议问题