1 | // Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QT3DEXTRAS_QFORWARDRENDERER_P_H |
5 | #define QT3DEXTRAS_QFORWARDRENDERER_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 for the convenience |
12 | // of other Qt classes. 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 <Qt3DRender/private/qtechniquefilter_p.h> |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | namespace Qt3DRender { |
23 | |
24 | class QForwardRenderer; |
25 | class QViewport; |
26 | class QClearBuffers; |
27 | class QCameraSelector; |
28 | class QFrustumCulling; |
29 | class QRenderSurfaceSelector; |
30 | class QDebugOverlay; |
31 | |
32 | } // namespace Qt3DRender |
33 | |
34 | namespace Qt3DExtras { |
35 | |
36 | class QForwardRendererPrivate: public Qt3DRender::QTechniqueFilterPrivate |
37 | { |
38 | public: |
39 | QForwardRendererPrivate(); |
40 | |
41 | Qt3DRender::QRenderSurfaceSelector *m_surfaceSelector; |
42 | Qt3DRender::QViewport *m_viewport; |
43 | Qt3DRender::QCameraSelector *m_cameraSelector; |
44 | Qt3DRender::QClearBuffers *m_clearBuffer; |
45 | Qt3DRender::QFrustumCulling *m_frustumCulling; |
46 | Qt3DRender::QDebugOverlay *m_debugOverlay; |
47 | |
48 | void init(); |
49 | |
50 | Q_DECLARE_PUBLIC(QForwardRenderer) |
51 | }; |
52 | |
53 | } // Qt3DExtras |
54 | |
55 | QT_END_NAMESPACE |
56 | |
57 | #endif // QT3DEXTRAS_QFORWARDRENDERER_P_H |
58 | |
59 |