透明UIView的渲染是免费的吗?

发布于 2024-11-05 02:35:52 字数 79 浏览 0 评论 0原文

我知道在另一个视图上渲染半透明视图会产生成本。一个完全透明的视图对另一个视图怎么样?背景色为[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芯好空 2024-11-12 02:35:52

我不一定会说“免费”。 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 using clearColor, the opacity is zero. If the opacity is not zero, the GPU has to blend colors, which will consume more graphics memory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文