Where can I find a good QT OpenGL tutorial
Unsolved
Game Development
-
Things are described differently in different tutorials. What I want is something that is reliable and goes beyond the simple shape. I find that is hard to find the GLSL that QT expects.
-
Hi,
Which version of Qt are you using ?
-
You do not need special Qt OpenGL tutorials. Just use a few simple Qt OpenGL examples from Qt Examples https://doc.qt.io/qt-5/examples-widgets-opengl.html and use general OpenGL tutorials like:
- https://learnopengl.com
- http://opengl-tutorial.org
- http://ogldev.org
- https://open.gl
- https://thebookofshaders.com
My simple examples in Qt OpenGL:
- Triangle: https://rextester.com/ZTRI45421
- Texture: https://rextester.com/BJW63108
- 3D cube: https://rextester.com/IPI73465
- Snake 2D: https://rextester.com/MMC15477 (I translated this example to Qt OpenGL 3.3 from the Python OpenGL 1.1 tutorial: https://noobtuts.com/python/snake-game)