OpenGL deprecated in IOS 12, how to safely continue to use openGL on ios 12+ device?

前端 未结 2 1012
终归单人心
终归单人心 2021-01-12 20:35

Apple say that Apps built using OpenGL ES will continue to run in iOS 12, but Open GL ES is deprecated in iOS 12. Games and graphics-intensive apps that previously used Open

相关标签:
2条回答
  • 2021-01-12 20:59

    I recommend that OpenGL and Metal are developed together on iOS, and new features are used with Metal.

    0 讨论(0)
  • 2021-01-12 21:01

    You more or less do not.

    Apple has made it abundantly clear that they are not interested in supporting OpenGL ES further on any platform they control. In the future, you will use Metal or you will not have accelerated 3D graphics. Those will be your options.

    There are projects that expose OpenGL ES on such platforms by implementing an ES layer on top of Metal. MoltenGL, for example, but that one isn't free apparently.

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