Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qquick3drenderextensions.h
Go to the documentation of this file.
1// Copyright (C) 2023 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5
6#ifndef QQUICK3DRENDEREXTENSIONS_H
7#define QQUICK3DRENDEREXTENSIONS_H
8
9#include <QtCore/qobject.h>
10#include <QtQuick3D/qquick3dobject.h>
11
12QT_BEGIN_NAMESPACE
13
14class QSSGRenderer;
16class QQuick3DObjectPrivate;
17
18class Q_QUICK3D_EXPORT QQuick3DRenderExtension : public QQuick3DObject
19{
20 Q_OBJECT
21 QML_NAMED_ELEMENT(RenderExtension)
22 QML_UNCREATABLE("RenderExtension is an abstract type")
23 QML_ADDED_IN_VERSION(6, 6)
24public:
25 explicit QQuick3DRenderExtension(QQuick3DObject *parent = nullptr);
26 virtual ~QQuick3DRenderExtension();
27
28 QSSGRenderGraphObject *updateSpatialNode(QSSGRenderGraphObject *node) override;
29
30protected:
31 explicit QQuick3DRenderExtension(QQuick3DObjectPrivate &dd, QQuick3DObject *parent = nullptr);
32};
33
34QT_END_NAMESPACE
35
36#endif // QQUICK3DRENDEREXTENSIONS_H
Combined button and popup list for selecting options.