Low performance when execute eglSwapBuffer and eglMakeCurrent

前端 未结 1 903
灰色年华
灰色年华 2021-02-06 00:56

I\'m developing an Android Unity Plugin that allows user to record his/her gameplay
Overview of my solution:

  • Using OpenGl FrameBufferObject (FBO) to make Unit
相关标签:
1条回答
  • 2021-02-06 01:48

    A lot of OpenGL calls are assync, and some calls may cause the OpenGL wait the queued operations to execute. So the times you are seen are because of the other calls that execute before the actual call you are doing.

    0 讨论(0)
提交回复
热议问题