C++ Graphics Library in Visual Studio and Eclipse

前端 未结 4 1980
春和景丽
春和景丽 2021-01-22 08:58

Is there any Graphics library available in VS or Eclipse for C++? I am creating a PacMan Game so Which graphics Library should i Try?

4条回答
  •  [愿得一人]
    2021-01-22 09:27

    There are loads of things you can do:

    1. OpenGL: needs some intermediate library like GLEW or GLFW or others
    2. DirectX: See for example XNA, which is taled to be awesome for quick game development.
    3. Cross-pplatform toolkits: Qt, GTK+
    4. SDL
    5. Direct2D, GDI(+), ...

    I'd go with either XNA (for ease of use) or Qt.

提交回复
热议问题