// Copyright (C) 2023 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef RENDEREXTENSION_H #define RENDEREXTENSION_H #include #include class RenderExtension : public QQuick3DRenderExtension { Q_OBJECT QML_ELEMENT public: RenderExtension(); protected: QSSGRenderGraphObject *updateSpatialNode(QSSGRenderGraphObject *node) override; }; #endif // RENDEREXTENSION_H