Hello,
I know Chromium uses Skia to render certain parts of the application, though my understanding is that is varies by platform.
I am using Skia for another project and employing it for rendering most of my UI (widgets, text, controls, etc.). I was hoping to find some examples in Chromium of how Skia is used to render content, and the result (SkBitmap?) is cached and manipulated via the GPU backend (for example scrolling text or images as a user scrolls down a page) to prevent redrawing the SkCanvas contents for simple translations across the screen. Does Chromium use Skia in this way, or is it just around the tool bar/static elements? I tried reading the design docs and searching through the code, but it's a bit overwhelming so I'd appreciate some help to decide if I should continue studying Chromium's use of Skia or move on to something else.
Thanks for the help!
David