Qt OpenGL C++ 类

Qt OpenGL 模块提供使在 Qt 应用程序中易于使用 OpenGL 的类。 更多...

名称空间

QGL Specifies miscellaneous identifiers used in the Qt OpenGL module

详细描述

警告: This module should not be used anymore for new code. Please use the corresponding OpenGL classes in Qt GUI .

OpenGL is a standard API for rendering 3D graphics. OpenGL only deals with 3D rendering and provides little or no support for GUI programming issues. The user interface for an OpenGL application must be created with another toolkit, such as Cocoa on the macOS platform, Microsoft Foundation Classes (MFC) under Windows, or Qt on both platforms.

注意: OpenGL is a trademark of Silicon Graphics, Inc. in the United States and other countries.

The Qt OpenGL module makes it easy to use OpenGL in Qt applications. It provides an OpenGL widget class that can be used just like any other Qt widget, except that it opens an OpenGL display buffer where you can use the OpenGL API to render the contents.

要包括模块类定义,使用以下指令:

#include <QtOpenGL>
					

要链接到模块,添加此行到 qmake .pro 文件:

QT += opengl
					

The Qt OpenGL module is implemented as a platform-independent Qt/C++ wrapper around the platform-dependent GLX (version 1.3 or later), WGL, or AGL C APIs. Although the basic functionality provided is very similar to Mark Kilgard's GLUT library, applications using the Qt OpenGL module can take advantage of the whole Qt API for non-OpenGL-specific GUI functionality.