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_QRENDERPASS_P_H |
6 | #define QT3DRENDER_QRENDERPASS_P_H |
7 | |
8 | // |
9 | // W A R N I N G |
10 | // ------------- |
11 | // |
12 | // This file is not part of the Qt API. It exists for the convenience |
13 | // of other Qt classes. This header file may change from version to |
14 | // version without notice, or even be removed. |
15 | // |
16 | // We mean it. |
17 | // |
18 | |
19 | #include <private/qnode_p.h> |
20 | #include <Qt3DRender/qrenderpass.h> |
21 | |
22 | QT_BEGIN_NAMESPACE |
23 | |
24 | namespace Qt3DRender { |
25 | |
26 | class QParameter; |
27 | class QRenderState; |
28 | class QFilterKey; |
29 | |
30 | class QRenderPassPrivate : public Qt3DCore::QNodePrivate |
31 | { |
32 | public: |
33 | QRenderPassPrivate(); |
34 | |
35 | Q_DECLARE_PUBLIC(QRenderPass) |
36 | |
37 | QList<QFilterKey *> m_filterKeyList; |
38 | QList<QRenderState *> m_renderStates; |
39 | QList<QParameter *> m_parameters; |
40 | QShaderProgram *m_shader; |
41 | }; |
42 | |
43 | } // namespace Qt3DRender |
44 | |
45 | QT_END_NAMESPACE |
46 | |
47 | #endif // QRENDERPASS_P_H |
48 | |