QSurfaceFormat Class

QSurfaceFormat 类表示QSurface... 更多...

头文件: #include <QSurfaceFormat>
CMake: find_package(Qt6 REQUIRED COMPONENTS Gui)
target_link_libraries(mytarget PRIVATE Qt6::Gui)
qmake: QT += gui

公共类型

enum FormatOption { StereoBuffers, DebugContext, DeprecatedFunctions, ResetNotification, ProtectedContent }
flags FormatOptions
enum OpenGLContextProfile { NoProfile, CoreProfile, CompatibilityProfile }
enum RenderableType { DefaultRenderableType, OpenGL, OpenGLES, OpenVG }
enum SwapBehavior { DefaultSwapBehavior, SingleBuffer, DoubleBuffer, TripleBuffer }

公共函数

QSurfaceFormat()
QSurfaceFormat(QSurfaceFormat::FormatOptions options)
QSurfaceFormat(const QSurfaceFormat &other)
~QSurfaceFormat()
int alphaBufferSize() const
int blueBufferSize() const
const QColorSpace &colorSpace() const
int depthBufferSize() const
int greenBufferSize() const
bool hasAlpha() const
int majorVersion() const
int minorVersion() const
QSurfaceFormat::FormatOptions options() const
QSurfaceFormat::OpenGLContextProfile profile() const
int redBufferSize() const
QSurfaceFormat::RenderableType renderableType() const
int samples() const
void setAlphaBufferSize(int size)
void setBlueBufferSize(int size)
(since 6.0) void setColorSpace(const QColorSpace &colorSpace)
void setDepthBufferSize(int size)
void setGreenBufferSize(int size)
void setMajorVersion(int major)
void setMinorVersion(int minor)
void setOption(QSurfaceFormat::FormatOption option, bool on = true)
void setOptions(QSurfaceFormat::FormatOptions options)
void setProfile(QSurfaceFormat::OpenGLContextProfile profile)
void setRedBufferSize(int size)
void setRenderableType(QSurfaceFormat::RenderableType type)
void setSamples(int numSamples)
void setStencilBufferSize(int size)
void setStereo(bool enable)
void setSwapBehavior(QSurfaceFormat::SwapBehavior behavior)
void setSwapInterval(int interval)
void setVersion(int major, int minor)
int stencilBufferSize() const
bool stereo() const
QSurfaceFormat::SwapBehavior swapBehavior() const
int swapInterval() const
bool testOption(QSurfaceFormat::FormatOption option) const
std::pair<int, int> version() const
QSurfaceFormat &operator=(const QSurfaceFormat &other)

静态公共成员

QSurfaceFormat defaultFormat()
void setDefaultFormat(const QSurfaceFormat &format)
bool operator!=(const QSurfaceFormat &lhs, const QSurfaceFormat &rhs)
bool operator==(const QSurfaceFormat &lhs, const QSurfaceFormat &rhs)

详细说明

该格式包括颜色缓冲区(红色、绿色和蓝色)的大小;alpha 缓冲区的大小;深度缓冲区和模板缓冲区的大小;以及多采样时每个像素的采样数目。此外,该格式还包含曲面配置参数,如用于渲染的 OpenGL 配置文件和版本、是否启用立体缓冲区以及交换行为。

注意: 在排除上下文或窗口格式问题时,启用日志类别qt.qpa.gl 可能会有所帮助。根据平台的不同,当涉及到 OpenGL 初始化和 QSurfaceFormat 映射到的本地视觉或帧缓冲配置时,这可能会打印出有用的调试信息。

成员类型文档

枚举 QSurfaceFormat::FormatOption
flags QSurfaceFormat::FormatOptions

此枚举包含与QSurfaceFormat 一起使用的格式选项。

常量描述
QSurfaceFormat::StereoBuffers0x0001用于请求曲面格式的立体声缓冲区。
QSurfaceFormat::DebugContext0x0002用于请求包含额外调试信息的调试上下文。
QSurfaceFormat::DeprecatedFunctions0x0004用于请求在 OpenGL 上下文配置文件中包含已废弃的功能。如果未指定,则会得到一个不支持被标记为过时功能的前向兼容上下文。这需要 OpenGL 3.0 或更高版本。
QSurfaceFormat::ResetNotification0x0008启用 OpenGL 上下文重置通知。然后可通过上下文的isValid() 函数查询状态。请注意,不设置此标记并不能保证永远不会发生上下文状态丢失。此外,有些实现可能会选择报告上下文丢失,而不考虑该标记。支持动态启用上下文丢失监控的平台(如使用 WGL 的 Windows 或使用 GLX 的 Linux/X11 (xcb))将在每次调用makeCurrent() 时监控状态。有关更多信息,请参阅isValid()。
QSurfaceFormat::ProtectedContent0x0010允许访问受保护的内容。这允许 GPU 对受保护的资源(曲面、缓冲区、纹理)进行操作,例如受 DRM 保护的视频内容。目前仅针对 EGL 实现。

FormatOptions 类型是QFlags<FormatOption> 的类型定义。它存储格式选项值的 OR 组合。

enum QSurfaceFormat::OpenGLContextProfile

该枚举与QSurfaceFormat::setMajorVersion() 和QSurfaceFormat::setMinorVersion() 一起用于指定 OpenGL 上下文配置文件。

配置文件在 OpenGL 3.2 及以上版本中公开,用于在受限的核心配置文件和可能包含过时的支持功能的兼容性配置文件之间进行选择。

请注意,核心配置文件可能仍包含已过时的功能,并计划在更高版本中删除。要访问所设置 OpenGL 版本中核心配置文件的废弃功能,可以使用QSurfaceFormat 格式选项QSurfaceFormat::DeprecatedFunctions

常量说明
QSurfaceFormat::NoProfile0OpenGL 版本低于 3.2。对于 3.2 及更新版本,这与 CoreProfile 相同。
QSurfaceFormat::CoreProfile1在 OpenGL 3.0 版本中已过时的功能不可用。
QSurfaceFormat::CompatibilityProfile2早期 OpenGL 版本的功能可用。

enum QSurfaceFormat::RenderableType

此枚举指定曲面的渲染后端。

常数描述
QSurfaceFormat::DefaultRenderableType0x0默认的、未指定的渲染方法
QSurfaceFormat::OpenGL0x1桌面 OpenGL 渲染
QSurfaceFormat::OpenGLES0x2OpenGL ES 2.0 渲染
QSurfaceFormat::OpenVG0x4开放矢量图形渲染

enum QSurfaceFormat::SwapBehavior

QSurfaceFormat 使用此枚举来指定曲面的交换行为。交换行为对应用程序来说大多是透明的,但它会影响渲染延迟和吞吐量等因素。

常数说明
QSurfaceFormat::DefaultSwapBehavior0平台默认的、未指定的交换行为。
QSurfaceFormat::SingleBuffer1用于请求单缓冲,当 OpenGL 渲染直接在屏幕上进行而没有中间离屏缓冲时,单缓冲可能会导致闪烁。
QSurfaceFormat::DoubleBuffer2这通常是桌面平台的默认交换行为,包括一个后置缓冲区和一个前置缓冲区。渲染在后置缓冲区完成,然后交换后置缓冲区和前置缓冲区,或将后置缓冲区的内容复制到前置缓冲区,具体取决于实现方式。
QSurfaceFormat::TripleBuffer3当渲染速度仅能勉强跟上屏幕刷新速度时,有时会使用这种交换行为来降低跳帧风险。根据平台的不同,由于改进了流水线行为,它还可能略微提高 GPU 的使用效率。三重缓冲的代价是多占用一帧内存和延迟,而且根据底层平台的不同,可能不支持三重缓冲。

成员函数文档

QSurfaceFormat::QSurfaceFormat()

构造默认初始化的 QSurfaceFormat。

注: 默认情况下请求使用 OpenGL 2.0,因为它能在不同平台和 OpenGL 实现之间提供最高级别的可移植性。

QSurfaceFormat::QSurfaceFormat(QSurfaceFormat::FormatOptions options)

用给定的格式构建一个 QSurfaceFormatoptions

QSurfaceFormat::QSurfaceFormat(const QSurfaceFormat &other)

构造other 的副本。

[noexcept] QSurfaceFormat::~QSurfaceFormat()

摧毁QSurfaceFormat.

int QSurfaceFormat::alphaBufferSize() const

获取颜色缓冲区 alpha 通道的大小(以比特为单位)。

另请参见 setAlphaBufferSize()。

int QSurfaceFormat::blueBufferSize() const

获取颜色缓冲区蓝色通道的大小(比特)。

另请参见 setBlueBufferSize()。

const QColorSpace &QSurfaceFormat::colorSpace() const

返回色彩空间。

另请参阅 setColorSpace().

[static] QSurfaceFormat QSurfaceFormat::defaultFormat()

返回全局默认曲面格式。

setDefaultFormat() 未被调用时,这是一个默认构造的QSurfaceFormat

另请参阅 setDefaultFormat()。

int QSurfaceFormat::depthBufferSize() const

返回深度缓冲区的大小。

另请参见 setDepthBufferSize()。

int QSurfaceFormat::greenBufferSize() const

获取颜色缓冲区绿色通道的位数。

另请参见 setGreenBufferSize()。

bool QSurfaceFormat::hasAlpha() const

如果 alpha 缓冲区的大小大于零,则返回true

这意味着曲面可能会使用每个像素的半透明效果。

int QSurfaceFormat::majorVersion() const

返回 OpenGL 的主要版本。

默认版本为 2.0。

另请参见 setMajorVersion()。

int QSurfaceFormat::minorVersion() const

返回次要 OpenGL 版本。

另请参见 setMinorVersion()。

QSurfaceFormat::FormatOptions QSurfaceFormat::options() const

返回当前设置的格式选项。

另请参阅 setOption()、setOptions() 和testOption()。

QSurfaceFormat::OpenGLContextProfile QSurfaceFormat::profile() const

获取配置的 OpenGL 上下文配置文件。

如果请求的 OpenGL 版本小于 3.2,该设置将被忽略。

另请参阅 setProfile()。

int QSurfaceFormat::redBufferSize() const

获取颜色缓冲区红色通道的比特大小。

另请参见 setRedBufferSize()。

QSurfaceFormat::RenderableType QSurfaceFormat::renderableType() const

获取可呈现类型。

在桌面 OpenGL、OpenGL ES 和OpenVG 之间进行选择。

另请参见 setRenderableType().

int QSurfaceFormat::samples() const

启用多重采样时,返回每个像素的采样个数;禁用多重采样时,返回-1 。默认返回值为-1

另请参阅 setSamples()。

void QSurfaceFormat::setAlphaBufferSize(int size)

设置颜色缓冲区 alpha 通道所需的size 位数。

另请参见 alphaBufferSize()。

void QSurfaceFormat::setBlueBufferSize(int size)

设置所需的size 色彩缓冲区蓝色通道的位数。

另请参见 blueBufferSize()。

[since 6.0] void QSurfaceFormat::setColorSpace(const QColorSpace &colorSpace)

设置首选colorSpace

例如,这样就可以在支持 sRGB 的平台上请求带有默认帧缓冲器的窗口。

注意: 当请求的色彩空间不受平台支持时,请求将被忽略。请在创建窗口后查询QSurfaceFormat ,以验证是否能满足色彩空间请求。

注: 此设置控制窗口的默认帧缓冲区是否能在给定的色彩空间中进行更新和混合。它本身不会改变应用程序的输出。应用程序的渲染代码仍需通过适当的 OpenGL 调用来选择在给定的色彩空间中执行更新和混合,而不是使用标准的线性操作。

此函数在 Qt 6.0 中引入。

另请参见 colorSpace()。

[static] void QSurfaceFormat::setDefaultFormat(const QSurfaceFormat &format)

设置全局默认曲面format

QOpenGLContext,QWindow,QOpenGLWidget 及类似类默认使用此格式。

通过使用相关类的 setFormat() 函数,可以在每个实例中重载该格式。不过,在应用程序启动时一次性设置所有窗口的格式通常更为方便。在需要共享上下文的情况下,它还能保证正确的行为,因为通过该函数设置格式可保证所有上下文和表面(即使是由 Qt 内部创建的)都将使用相同的格式。

注意: 在设置Qt::AA_ShareOpenGLContexts 时,强烈建议在构建QGuiApplicationQApplication 之前调用此函数。否则,format 将不会应用于全局共享上下文,因此之后的上下文共享可能会出现问题。

另请参阅 defaultFormat() 。

void QSurfaceFormat::setDepthBufferSize(int size)

将最小深度缓冲区大小设置为size

另请参阅 depthBufferSize() 。

void QSurfaceFormat::setGreenBufferSize(int size)

设置色彩缓冲区绿色通道所需的size 位数。

另请参见 greenBufferSize()。

void QSurfaceFormat::setMajorVersion(int major)

设置所需的major OpenGL 版本。

另请参阅 majorVersion().

void QSurfaceFormat::setMinorVersion(int minor)

设置所需的minor OpenGL 版本。

默认版本为 2.0。

另请参阅 minorVersion().

void QSurfaceFormat::setOption(QSurfaceFormat::FormatOption option, bool on = true)

如果on 为 true,则设置格式选项option ;否则,清除该选项。

要验证选项是否被尊重,可在创建曲面/上下文后比较实际格式和要求的格式。

另请参阅 setOptions()、options() 和testOption()。

void QSurfaceFormat::setOptions(QSurfaceFormat::FormatOptions options)

将格式选项设置为options

要验证选项是否被遵守,可在创建曲面/上下文后比较实际格式和所要求的格式。

另请参阅 options() 和testOption() 。

void QSurfaceFormat::setProfile(QSurfaceFormat::OpenGLContextProfile profile)

设置所需的 OpenGL 上下文profile

如果请求的 OpenGL 版本小于 3.2,该设置将被忽略。

另请参阅 profile() 。

void QSurfaceFormat::setRedBufferSize(int size)

设置色彩缓冲区红色通道所需的size 位数。

另请参见 redBufferSize()。

void QSurfaceFormat::setRenderableType(QSurfaceFormat::RenderableType type)

设置所需的可呈现type

在桌面 OpenGL、OpenGL ES 和OpenVG 之间进行选择。

另请参阅 renderableType() 。

void QSurfaceFormat::setSamples(int numSamples)

将启用多重采样时每个像素的首选采样个数设置为numSamples 。默认情况下,多重采样被禁用。

另请参阅 samples() 。

void QSurfaceFormat::setStencilBufferSize(int size)

将首选模板缓冲区大小设置为size 位。

另请参见 stencilBufferSize().

void QSurfaceFormat::setStereo(bool enable)

如果enable 为 true,则启用立体声缓冲;否则禁用立体声缓冲。

立体声缓冲默认为禁用。

立体声缓冲提供额外的颜色缓冲区,用于生成左眼和右眼图像。

另请参阅 stereo().

void QSurfaceFormat::setSwapBehavior(QSurfaceFormat::SwapBehavior behavior)

设置曲面的交换behavior

交换行为指定所需的是单缓冲、双缓冲还是三缓冲。默认值DefaultSwapBehavior 是平台的默认交换行为。

另请参阅 swapBehavior().

void QSurfaceFormat::setSwapInterval(int interval)

设置首选的交换间隔。交换间隔指定了在缓冲区交换之前显示的最小视频帧数。这可用于使窗口中的 GL 绘制与屏幕的垂直刷新同步。

interval 设置为 0 将关闭垂直刷新同步,任何大于 0 的值都将打开垂直同步。将interval 设置为更高的值,例如 10,会导致每次缓冲区交换之间有 10 次垂直刷新。

默认间隔为 1。

底层平台可能不支持更改交换间隔。在这种情况下,请求将被静默忽略。

另请参阅 swapInterval().

void QSurfaceFormat::setVersion(int major, int minor)

设置所需的majorminor OpenGL 版本。

默认版本为 2.0。

另请参阅 version().

int QSurfaceFormat::stencilBufferSize() const

以比特为单位返回模板缓冲区的大小。

另请参见 setStencilBufferSize().

bool QSurfaceFormat::stereo() const

如果启用了立体声缓冲,则返回true ;否则返回 false。立体声缓冲默认为禁用。

另请参阅 setStereo().

QSurfaceFormat::SwapBehavior QSurfaceFormat::swapBehavior() const

返回配置的交换行为。

另请参阅 setSwapBehavior()。

int QSurfaceFormat::swapInterval() const

返回交换间隔。

另请参阅 setSwapInterval().

bool QSurfaceFormat::testOption(QSurfaceFormat::FormatOption option) const

如果设置了格式选项option ,则返回 true;否则返回 false。

另请参阅 options().

std::pair<int, int> QSurfaceFormat::version() const

返回表示 OpenGL 版本的 std::pair<int, int>。

用于版本检查,例如 format.version() >= std::pair(3, 2)

另请参见 setVersion().

QSurfaceFormat &QSurfaceFormat::operator=(const QSurfaceFormat &other)

为该对象指定other

相关非会员

[noexcept] bool operator!=(const QSurfaceFormat &lhs, const QSurfaceFormat &rhs)

如果两个QSurfaceFormat 对象lhsrhs 的所有选项相等,则返回false ;否则返回true

[noexcept] bool operator==(const QSurfaceFormat &lhs, const QSurfaceFormat &rhs)

如果两个QSurfaceFormat 对象lhsrhs 的所有选项相等,则返回true

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.