透明UIView的渲染是免费的吗?
我知道在另一个视图上渲染半透明视图会产生成本。一个完全透明的视图对另一个视图怎么样?背景色为[UIColorclearColor]的IE浏览器。
I understand that there's cost involved in rendering a semitransparent view over another view. What about a totally transparent view over another view. I.E. one whose background color is [UIColor clearColor].
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不一定会说“免费”。
UIView
正在分配内存。因此,就内存使用而言,它不是“免费的”。然而,当且仅当背景颜色的 alpha 值(不透明度)恰好为零时,它不需要 GPU 进行太多工作。如果像您所说的那样,您使用的是clearColor
,则不透明度为零。如果不透明度不为零,GPU 必须混合颜色,这将消耗更多的图形内存。I wouldn't necessarily say "free." The
UIView
is being allocated memory. So, with respect to the memory usage, no, it's not "free." However, it will not require much work from the GPU, if and only if the alpha value (opacity) of the background color is exactly zero. If, like you said, you are usingclearColor
, the opacity is zero. If the opacity is not zero, the GPU has to blend colors, which will consume more graphics memory.