Game engine in OpenGL with GLFW and Qt?

前端 未结 1 1475
一生所求
一生所求 2021-02-10 01:04

I started a similar question several months ago Qt and OpenGL for game development

At the moment I am not really sure what I should do. I often read that it is not reco

1条回答
  •  孤城傲影
    2021-02-10 01:27

    Is it possible to use Qt and GLFW in the same project?

    No. But why would you? You can use GLFW for your standalone engine and Qt for the editor. It's even possible to replace the QCoreApplication event loop with something custom. Just make sure that your code is not too tightly coupled to a certain framework.

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