如何使用 AndroidNDK 调用eglSwaptInterval?
我需要为我的应用程序将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我已经设法从本机端调用它,(我找不到从 Java 调用它的方法):
我假设我不需要自己调用eglSwapBuffers,因为这似乎已经在某个地方发生了安卓系统。
Okay, I have managed to call it from the native side, (I cannot find a way to call it from Java):
I am assuming that I don't need to call eglSwapBuffers myself, as this seems to be happening already somewhere by the Android system.