OpenGL vs OpenGL ES 2.0 - Can an OpenGL Application Be Easily Ported?

后端 未结 5 1394
囚心锁ツ
囚心锁ツ 2020-12-23 11:27

I am working on a gaming framework of sorts, and am a newcomer to OpenGL. Most books seem to not give a terribly clear answer to this question, and I want to develop on my

5条回答
  •  春和景丽
    2020-12-23 11:59

    Option 3) You could use a library like Qt to handle your OpenGL code using their built in wrapper functions. This gives you the option of using one code base (or minimally different code bases) for OpenGL and building for most any platform you want. You wouldn't need to port it for each different platform you wanted to support. Qt can even choose the OpenGL context based on the functions that you use.

提交回复
热议问题