当前位置: 代码迷 >> 综合 >> 【填坑】Android 中 OpenGLES 播放黑屏
  详细解决方案

【填坑】Android 中 OpenGLES 播放黑屏

热度:44   发布时间:2023-10-23 05:12:15.0

 

OpenGL的常见问题:https://blog.csdn.net/qq_34950682/article/details/106568055

除了OpenGL的常见问题在使用OpenGLES时出现黑屏问题排查思路:

绑定Display、Surface、Context时调用的函数需要与要与绘制函数在同一个线程

EGLBoolean eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
EGLBoolean eglSwapBuffers (EGLDisplay dpy, EGLSurface surface);

 

  相关解决方案