1 | // Copyright (C) 2023 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QQUICK3DRENDEREXTENSIONS_P_H |
5 | #define QQUICK3DRENDEREXTENSIONS_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists purely as an |
12 | // implementation detail. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <QtCore/qobject.h> |
19 | #include <QtQuick3D/qquick3dobject.h> |
20 | #include <QtQuick3DRuntimeRender/private/qssgrenderextensions_p.h> |
21 | |
22 | QT_BEGIN_NAMESPACE |
23 | |
24 | class QSSGRenderer; |
25 | class QSSGLayerRenderData; |
26 | |
27 | class Q_QUICK3D_EXPORT QQuick3DRenderExtension : public QQuick3DObject |
28 | { |
29 | Q_OBJECT |
30 | QML_NAMED_ELEMENT(RenderExtension) |
31 | QML_UNCREATABLE("RenderExtension is an abstract type" ) |
32 | QML_ADDED_IN_VERSION(6, 6) |
33 | public: |
34 | explicit QQuick3DRenderExtension(QQuick3DObject *parent = nullptr); |
35 | virtual ~QQuick3DRenderExtension(); |
36 | }; |
37 | |
38 | QT_END_NAMESPACE |
39 | |
40 | #endif // QQUICK3DRENDEREXTENSIONS_P_H |
41 | |