OpenGL Examples from the Qt OpenGL module

These examples describe how to use the Qt OpenGL module. For new code, please use the OpenGL classes in the Qt GUI 模块。

Qt provides support for integration with OpenGL implementations on all platforms, giving developers the opportunity to display hardware accelerated 3D graphics alongside a more conventional user interface.

These examples demonstrate the basic techniques used to take advantage of OpenGL in Qt applications.

2D 描绘范例 The 2D Painting example shows how QPainter and QGLWidget can be used together to display accelerated 2D graphics on supported hardware.
Cube OpenGL ES 2.0 example The Cube OpenGL ES 2.0 example shows how to write mouse rotateable textured 3D cube using OpenGL ES 2.0 with Qt. It shows how to handle polygon geometries efficiently and how to write simple vertex and fragment shader for programmable graphics pipeline. In addition it shows how to use quaternions for representing 3D object orientation.
Hello GL2 范例 The Hello GL2 example demonstrates the basic use of the OpenGL-related classes provided with Qt.
纹理范例 The Textures example demonstrates the use of Qt's image classes as textures in applications that use both OpenGL and Qt to display graphics.