blob: 634aa5b9f6c4e9821c1cf405337f22e28548b7a4 (
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
|
// Copyright (C) 2024 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
#define QT_OPENGL_BUILD_REMOVED_API
#include "qtopenglglobal.h"
QT_USE_NAMESPACE
#if QT_OPENGL_REMOVED_SINCE(6, 8)
#include "qopenglfunctions_4_5_compatibility.h" // inline API
#include "qopenglfunctions_4_5_core.h" // inline API
// #include <qotherheader.h>
// // implement removed functions from qotherheader.h
// order sections alphabetically to reduce chances of merge conflicts
#endif // QT_OPENGL_REMOVED_SINCE(6, 8)
#if QT_OPENGL_REMOVED_SINCE(6, 9)
// #include "qotherheader.h"
// // implement removed functions from qotherheader.h
// order sections alphabetically to reduce chances of merge conflicts
#endif // QT_OPENGL_REMOVED_SINCE(6, 9)
|