summaryrefslogtreecommitdiffstats
path: root/src/qtdiag/qtdiag.h
blob: 23467e0f22b950bde86920b0f530857f2a59e7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef QTDIAG_H
#define QTDIAG_H

#include <QtCore/QString>

QT_BEGIN_NAMESPACE

enum QtDiagFlags {
    QtDiagGl = 0x1,
    QtDiagGlExtensions = 0x2,
    QtDiagFonts = 0x4,
    QtDiagVk = 0x8,
    QtDiagRhi = 0x10
};

QString qtDiag(unsigned flags = 0);

QT_END_NAMESPACE

#endif // QTDIAG_H