1// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
2// Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies).
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
4
5#ifndef QT3DRENDER_QRENDERSTATE_H
6#define QT3DRENDER_QRENDERSTATE_H
7
8#include <Qt3DCore/qnode.h>
9#include <Qt3DRender/qt3drender_global.h>
10
11QT_BEGIN_NAMESPACE
12
13namespace Qt3DRender {
14
15class QRenderStatePrivate;
16
17class Q_3DRENDERSHARED_EXPORT QRenderState : public Qt3DCore::QNode
18{
19 Q_OBJECT
20public:
21 ~QRenderState();
22
23protected:
24 explicit QRenderState(QRenderStatePrivate &dd, Qt3DCore::QNode *parent = nullptr);
25
26private:
27 Q_DECLARE_PRIVATE(QRenderState)
28};
29
30} // namespace Qt3DRender
31
32QT_END_NAMESPACE
33
34#endif // QT3DRENDER_QRENDERSTATE_H
35

source code of qt3d/src/render/renderstates/qrenderstate.h