Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qtdiag.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#ifndef QTDIAG_H
5#define QTDIAG_H
6
7#include <QtCore/QString>
8
9QT_BEGIN_NAMESPACE
10
11enum QtDiagFlags {
12 QtDiagGl = 0x1,
13 QtDiagGlExtensions = 0x2,
14 QtDiagFonts = 0x4,
15 QtDiagVk = 0x8,
16 QtDiagRhi = 0x10
17};
18
19QString qtDiag(unsigned flags = 0);
20
21QT_END_NAMESPACE
22
23#endif // QTDIAG_H
int main(int argc, char *argv[])
[2]
Definition buffer.cpp:77
QString qtDiag(unsigned flags)
Definition qtdiag.cpp:561