blob: a1ae0a461e4f226abd696ed553ea7da408bfe65c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QOPENGLVERSIONPROFILE_H
#define QOPENGLVERSIONPROFILE_H
#include <QtOpenGL/qtopenglglobal.h>
#include <QtGui/QSurfaceFormat>
#include <QtCore/qhashfunctions.h>
QT_BEGIN_NAMESPACE
class QOpenGLVersionProfilePrivate;
class QDebug;
class Q_OPENGL_EXPORT QOpenGLVersionProfile
{
public:
QOpenGLVersionProfile();
explicit QOpenGLVersionProfile(const QSurfaceFormat &format);
QOpenGLVersionProfile(const QOpenGLVersionProfile &other);
~QOpenGLVersionProfile();
QOpenGLVersionProfile &operator=(const QOpenGLVersionProfile &rhs);
std::pair<int, int> version() const;
void setVersion(int majorVersion, int minorVersion);
QSurfaceFormat::OpenGLContextProfile profile() const;
void setProfile(QSurfaceFormat::OpenGLContextProfile profile);
bool hasProfiles() const;
bool isLegacyVersion() const;
bool isValid() const;
private:
QOpenGLVersionProfilePrivate* d;
friend bool operator==(const QOpenGLVersionProfile &lhs, const QOpenGLVersionProfile &rhs) noexcept
{
if (lhs.profile() != rhs.profile())
return false;
return lhs.version() == rhs.version();
}
friend bool operator!=(const QOpenGLVersionProfile &lhs, const QOpenGLVersionProfile &rhs) noexcept
{
return !operator==(lhs, rhs);
}
};
inline size_t qHash(const QOpenGLVersionProfile &v, size_t seed = 0) noexcept
{
return qHash(static_cast<int>(v.profile() * 1000)
+ v.version().first * 100 + v.version().second * 10, seed);
}
#ifndef QT_NO_DEBUG_STREAM
Q_OPENGL_EXPORT QDebug operator<<(QDebug debug, const QOpenGLVersionProfile &vp);
#endif // !QT_NO_DEBUG_STREAM
QT_END_NAMESPACE
#endif // QOPENGLVERSIONPROFILE_H
|