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
24

source code of qttools/src/qtdiag/qtdiag.h