如何使用 AndroidNDK 调用eglSwaptInterval?

发布于 2024-11-24 02:15:57 字数 135 浏览 0 评论 0原文

我需要为我的应用程序将 eglSwapInterval 中的间隔设置为 0,但是我需要知道 EGLDisplay 的情况。 Android 是否支持此调用,如果支持,我如何使用 GLSurfaceView 调用此调用(或者我是否需要从本机代码调用此调用?)

I need to set the interval in eglSwapInterval to 0 for my application, however I need to know the EGLDisplay for this. Is this call supported in Android, and if so how can I call this using GLSurfaceView (or do I need to call this from the native code?)

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

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

发布评论

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

评论(1

黯淡〆 2024-12-01 02:15:57

好的,我已经设法从本机端调用它,(我找不到从 Java 调用它的方法):

 eglSwapInterval(eglGetCurrentDisplay(), 0);

我假设我不需要自己调用eglSwapBuffers,因为这似乎已经在某个地方发生了安卓系统。

Okay, I have managed to call it from the native side, (I cannot find a way to call it from Java):

 eglSwapInterval(eglGetCurrentDisplay(), 0);

I am assuming that I don't need to call eglSwapBuffers myself, as this seems to be happening already somewhere by the Android system.

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