understanding hardware acceleration on mobile browsers
play

Understanding Hardware Acceleration on Mobile Browsers Ariya - PowerPoint PPT Presentation

Understanding Hardware Acceleration on Mobile Browsers Ariya Hidayat Magical Advice Use translate3d for hardware acceleration Challenges Game vs Web Game Text Textured objects Animation Physics Transformation Large but Still Bounded


  1. Understanding Hardware Acceleration on Mobile Browsers Ariya Hidayat

  2. Magical Advice Use translate3d for hardware acceleration

  3. Challenges

  4. Game vs Web

  5. Game Text Textured objects Animation Physics Transformation

  6. Large but Still Bounded

  7. Web Page Images Text

  8. Challenges ✔ Predictable contents (assets) ✔ Mostly text ✔ Mostly images Initial response immediate

  9. Browser Rendering

  10. From Wave to Pixels Network stack Layout engine JavaScript engine Graphics User interface

  11. WebKit Components Render Engine CSS DOM SVG HTML Canvas WebCore Client Interface JavaScript Engine (JSC/V8)

  12. Platform Abstraction Network Unicode Clipboard Graphics Theme Events Thread Geolocation Timer

  13. Graphics Abstraction iOS Android GraphicsContext Skia CoreGraphics Graphics stack

  14. SoC = System-on-a-Chip CPU GPU

  15. GPU Workflow Matrix Vertices Textured Rendered

  16. Optimized for Games “Fixed” geometry Transformation Textured triangles Parallelism

  17. Powerful Capabilities http://epicgames.com/technology/epic-citadel http://www.rage.com/

  18. http://www.trollquotes.org/619-super-spider-bat-troll-quote/

  19. Fundamental Physical Limitations  Memory - Can’t store too much stuff  Speed - Quad-core CPU can do certain operations better  Bandwidth - Bottleneck can be in the data transfer

  20. Traffic Congestion

  21. Primitive Drawing

  22. Path is Everything Triangle Rectangle Path Ellipse Polygon

  23. Stroke = Outline Solid Dashed Dotted Textured

  24. Brush = Fill None Solid Gradient Textured

  25. Gradient = Non-uniform Pixel Values

  26. Drawing Time: Solid vs Gradient Only border Solid color fill 14x slower (depending on the dimension) Linear gradient fill Radial gradient fill

  27. Path Approximation Curves Polygon

  28. Smooth via Antialiasing Multiple levels of transparency Perfect for parallelism

  29. Shadow Involved pixel “blending” Often obstructed

  30. Drawing Time: Solid vs Blur Shadow 20x slower (depending on the blur radius) Solid shadow Blur shadow

  31. CSS = Box Model http://www.w3.org/TR/CSS2/zindex.html Appendix E. Elaborate description of Stacking Contexts

  32. Shadow Abuse 12,000 pixels Blur shadow

  33. Transformation Scaling Perspective Rotation

  34. Text Rasterization

  35. Font Atlas Buffer Bye

  36. From Simple to Complex Hello! Curves Gradient brush Simple shape Textured stroke Solid color Blur shadow Serif text Rotated Make it as an image

  37. Library Instrumentation platformInit savePlatformState translate 0,0 translate 0,0 clip 1,0 0x6.95322e-310 fillRect 0,0 800x556 color ff ff ff ff restorePlatformState platformDestroy platformInit savePlatformState translate 0,0 translate 0,0 clip 1,0 0x6.95322e-310 fillRect 0,0 800x556 color ff ff ff ff restorePlatformState platformDestroy platformInit savePlatformState translate 0,0 translate 0,0 clip 1,0 0x6.95322e-310 fillRect 0,0 800x556 color ff ff ff ff fillRect 0,0 800x556 color ff ff ff ff

  38. Painting Performance 16:24:04.070 D/webcoreglue( 273): drawContent 11 ms 16:24:04.110 D/webcoreglue( 273): drawContent 13 ms 16:24:04.150 D/webcoreglue( 273): drawContent 13 ms 16:24:04.190 D/webcoreglue( 273): drawContent 10 ms 16:24:04.240 D/webcoreglue( 273): drawContent 10 ms 16:24:04.280 D/webcoreglue( 273): drawContent 13 ms 16:24:04.320 D/webcoreglue( 273): drawContent 13 ms 16:24:04.360 D/webcoreglue( 273): drawContent 13 ms 16:24:06.080 D/webcoreglue( 273): drawContent 12 ms 16:24:06.140 D/webcoreglue( 273): drawContent 10 ms 16:24:06.180 D/webcoreglue( 273): drawContent 13 ms 16:24:06.230 D/webcoreglue( 273): drawContent 14 ms 16:24:06.600 D/webcoreglue( 273): drawContent 26 ms 16:24:06.640 D/webcoreglue( 273): drawContent 13 ms 16:24:06.860 D/webcoreglue( 273): drawContent 33 ms 16:24:06.890 D/webcoreglue( 273): drawContent 12 ms 16:24:06.930 D/webcoreglue( 273): drawContent 13 ms 16:24:06.960 D/webcoreglue( 273): drawContent 13 ms 16:24:07.000 D/webcoreglue( 273): drawContent 13 ms

  39. Backing Store

  40. Maps Tiles

  41. Responsive Interface Rendering Processor User interaction

  42. Pinch to Zoom when you pinch...

  43. Rendering vs Interaction Rendering Web Page User interaction

  44. Checkerboard Pattern Poor man’s indicator of performance

  45. Progressive Rendering Fast but blurry Crisp but slow

  46. Perceived Responsiveness User pinches Smooth scaled Blocky (but fast!)

  47. Tiling System .... .... CPU GPU Streamed What happens if the page background changes color?

  48. Tile Transformation Panning = Translation Zooming = Scaling

  49. Y U NO position:fixed

  50. Layer & Compositing

  51. Typical Animation opacity, movement, scaling, rotation, ...

  52. Principles of Fluid Animation At the beginning, push as many resources 1 as possible to the GPU During the animation, minimize 2 CPU-GPU interaction

  53. Immediate vs Retained At the beginning... draw the shape onto a buffer For every animation tick... draw the shape at (x, y) blit the buffer at (x, y) x = x + 10 x = x + 10 Off main thread

  54. Mechanics of Animation “Hey, this is good stuff. Cache it as texture #42.” Initialization “Apply [operation] to texture #42.” Animation step

  55. Elements = Layer

  56. Logical 3-D

  57. Compositing By Force -webkit-transform: translateZ(0) Not needed for CSS animation! .someid { -webkit-animation-name: somekeyframeanimation; -webkit-animation-duration: 7s; -webkit-transform: translateZ(0); } Don’t do that

  58. Debugging in Safari defaults write com.apple.Safari IncludeInternalDebugMenu 1

  59. Compositing Indicators Texture (number = upload) Composited layer No associated texture Container layer Overflow

  60. Avoid Texture Reupload No reupload Upload Opacity Everything else! Position Size Animation “Hardware accelerated CSS”

  61. Examples

  62. Color Transition @-webkit-keyframes box { 0% { -webkit-transform: background-color: blue; } 100% { -webkit-transform: background-color: green; } } Need a new texture uploaded to the GPU for every in-between color

  63. Color Transition: The Trick Blended with

  64. Prepare and Reuse Hide the layer offscreen Viewport

  65. Timer Latency Depending on user reaction • Animation end triggers the JavaScript callback • JavaScript code kicks the next animation Prepare both animation and hide the “wrong” one

  66. Avoid Overcapacity Texture upload .... .... Think of the GPU memory like a cache .

  67. Wrap-up

  68. Hardware Acceleration Layer & compositing Drawing primitives Backing stores

  69. There is no such Traditional graphics programming has been always full of tricks. It will always be.

  70. Thank You Office Hour ariya.hidayat@gmail.com Wed 1:45 PM ariya.ofilabs.com @AriyaHidayat

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend