There are two ways to render GPU screens:
On-Screen Rendering
It means the current screen rendering, which means that the rendering operation of the GPU is performed in the screen buffer currently used for display.
Off-Screen Rendering
It means off-screen rendering, which means that the GPU opens a new buffer outside the current screen buffer for rendering operations.
Special off-screen rendering:
If renderings not in the current screen buffer of the GPU are called off-screen rendering, then there is another special "off-screen rendering" method: CPU rendering.
If we rewrite the drawRect method and use any Core Graphics technology to perform the drawing operation, CPU rendering is involved. The entire rendering process is synchronously in the App by the CPU
Complete, the rendered bitmap is finally handed over to the GPU for display. (CPU Rendering—>GPU Display)
When will off-screen rendering be called:
When using rounded corners, shadows, and masks, the mixture of layer properties is specified to be drawn directly on the screen before pre-composition, so off-screen rendering is required to be evoked.
Why off-screen rendering causes performance consumption:
Off-screen rendering does not mean software drawing, but it means that the layer must be rendered in an off-screen context (regardless of CPU or GPU) before it is displayed.
Therefore, when using off-screen rendering, it is easy to cause performance consumption, because off-screen rendering in OPENGL will create an off-screen buffer in memory and render it alone, and switching the off-screen buffer with the current screen buffer context is very performance-intensive.
Use Instruments to monitor off-screen rendering
Instruments' Core Animation tool has several check options related to off-screen rendering:
Color Offscreen-Rendered Yellow
When turned on, the layers that need to be rendered off-screen will be highlighted to yellow, which means that the yellow layers may have performance problems.
Color Hits Green and Misses Red
If shouldRasterize is set to YES, the corresponding rendering results will be cached. If the layer is green, it means that these caches are reused; if it is red, it means that the cache will be created repeatedly, which means that there is a performance problem at that point.
Optimization on iOS version
Before iOS 9.0, the UIimageView and UIButton set the rounded corners will trigger off-screen rendering.
After iOS 9.0, UIButton sets rounded corners to trigger off-screen rendering, while PNG image setting rounded corners in UIImageView will not trigger off-screen rendering. If other shadow effects are set, off-screen rendering will still trigger off-screen rendering.
This may be because Apple also realizes that off-screen rendering will cause performance problems, so Apple does not need off-screen rendering where it can not produce off-screen rendering.
Through this article, I hope it can help you. Thank you for your support for this website!