iPhone:当上下文消失时,我需要进行多少 OpenGL 清理?

发布于 2024-08-28 04:12:37 字数 207 浏览 5 评论 0原文

我在 iPhone 应用程序中的几个视图恰好使用了独立的 openGL 上下文。它们不一定是长寿的,因此它们会在该过程发生之前消失。它们每个都有一些纹理。

-releaseEAGLContext 是否会导致所有 GL 状态为我清理?或者我是否因找不到调用glDeleteTextures的地方而泄漏纹理等?

谢谢。

I several views in an iPhone app which happen to use independent openGL contexts. They are not necessarily long-lived so they go away before the process does. And they have a couple textures in each.

Does -releaseing the EAGLContext cause all that GL state to get cleaned up for me? Or am I leaking textures etc by not finding a place to call glDeleteTextures from?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

删除→记忆 2024-09-04 04:12:37

当对该共享组的最后一个引用被释放时(通常通过销毁所有共享上下文),与该共享组关联的所有资源都将被销毁。

请务必小心:当您将上下文设置为线程的当前上下文时,该上下文将被视为引用。上下文在与它可能绑定到的所有线程分离之前不会被删除。

All resources associated with a sharegroup are destroyed, when the last reference to that sharegroup is released (usually by destroying all of the shared contexts).

Do be careful: when you make a context current for a thread, that counts as a reference. A context will not be deleted until it is detached from all threads that it may have been bound to.

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