| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #ifndef QQUICKOPENGLUTILS_H |
| 5 | #define QQUICKOPENGLUTILS_H |
| 6 | |
| 7 | #if 0 |
| 8 | #pragma qt_class(QQuickOpenGLUtils) |
| 9 | #endif |
| 10 | |
| 11 | #include <QtQuick/qtquickglobal.h> |
| 12 | |
| 13 | QT_BEGIN_NAMESPACE |
| 14 | |
| 15 | namespace QQuickOpenGLUtils { |
| 16 | |
| 17 | Q_QUICK_EXPORT void resetOpenGLState(); |
| 18 | |
| 19 | } // namespace QQuickOpenGLUtils |
| 20 | |
| 21 | QT_END_NAMESPACE |
| 22 | |
| 23 | #endif // QQUICKOPENGLUTILS_H |
| 24 | |