QGIS API Documentation 3.43.0-Master (37eec98dbf6)
qgsforwardrenderview.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsforwardrenderview.h
3 --------------------------------------
4 Date : June 2024
5 Copyright : (C) 2024 by Benoit De Mezzo and (C) 2020 by Belgacem Nedjima
6 Email : benoit dot de dot mezzo at oslandia dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSFORWARDRENDERVIEW_H
17#define QGSFORWARDRENDERVIEW_H
18
20
21namespace Qt3DRender
22{
23 class QRenderSettings;
24 class QLayer;
25 class QSubtreeEnabler;
26 class QTexture2D;
27 class QCamera;
28 class QCameraSelector;
29 class QLayerFilter;
30 class QRenderTargetSelector;
31 class QRenderTarget;
32 class QClearBuffers;
33 class QFrustumCulling;
34 class QRenderStateSet;
35 class QDebugOverlay;
36} // namespace Qt3DRender
37
38#define SIP_NO_FILE
39
48{
49 public:
51 QgsForwardRenderView( const QString &viewName, Qt3DRender::QCamera *mainCamera );
52
54 Qt3DRender::QLayer *renderLayer() { return mRenderLayer; }
55
57 Qt3DRender::QLayer *transparentObjectLayer() { return mTransparentObjectsLayer; }
58
60 void setClearColor( const QColor &clearColor );
61
63 bool isFrustumCullingEnabled() const { return mFrustumCullingEnabled; }
65 void setFrustumCullingEnabled( bool enabled );
66
68 void setDebugOverlayEnabled( bool enabled );
69
71 Qt3DRender::QRenderTargetSelector *renderTargetSelector() { return mRenderTargetSelector; }
72
73 virtual void updateWindowResize( int width, int height ) override;
74
76 Qt3DRender::QTexture2D *depthTexture() const;
77
79 Qt3DRender::QTexture2D *colorTexture() const;
80
88 void addClipPlanes( int nrClipPlanes );
89
96 void removeClipPlanes();
97
98 private:
99 Qt3DRender::QCamera *mMainCamera = nullptr;
100
101 Qt3DRender::QCameraSelector *mMainCameraSelector = nullptr;
102 Qt3DRender::QLayerFilter *mLayerFilter = nullptr;
103 Qt3DRender::QRenderTargetSelector *mRenderTargetSelector = nullptr;
104
105 // clip planes render state
106 Qt3DRender::QRenderStateSet *mClipRenderStateSet = nullptr;
107
108 Qt3DRender::QLayer *mRenderLayer = nullptr;
109 Qt3DRender::QLayer *mTransparentObjectsLayer = nullptr;
110 Qt3DRender::QClearBuffers *mClearBuffers = nullptr;
111 bool mFrustumCullingEnabled = true;
112 Qt3DRender::QFrustumCulling *mFrustumCulling = nullptr;
113 // Forward rendering pass texture related objects:
114 Qt3DRender::QTexture2D *mColorTexture = nullptr;
115 Qt3DRender::QTexture2D *mDepthTexture = nullptr;
116 // QDebugOverlay added in the forward pass
117#if QT_VERSION >= QT_VERSION_CHECK( 5, 15, 0 )
118 Qt3DRender::QDebugOverlay *mDebugOverlay = nullptr;
119#endif
120
124 void buildRenderPasses();
125
129 Qt3DRender::QRenderTarget *buildTextures();
130};
131
132#endif // QGSFORWARDRENDERVIEW_H
Base class for 3D render view.
Container class that holds different objects related to forward rendering.
Qt3DRender::QRenderTargetSelector * renderTargetSelector()
Returns current render target selector.
Qt3DRender::QLayer * renderLayer()
Returns a layer object used to indicate that the object is transparent.
void setClearColor(const QColor &clearColor)
Sets the clear color of the scene (background color)
Qt3DRender::QTexture2D * colorTexture() const
Returns forward color texture.
Qt3DRender::QLayer * transparentObjectLayer()
Returns a layer object used to indicate that the object is transparent.
void setDebugOverlayEnabled(bool enabled)
Sets whether debug overlay is enabled.
virtual void updateWindowResize(int width, int height) override
Called when 3D window is resized.
void setFrustumCullingEnabled(bool enabled)
Sets whether frustum culling is enabled.
bool isFrustumCullingEnabled() const
Returns whether frustum culling is enabled.
Qt3DRender::QTexture2D * depthTexture() const
Returns forward depth texture.
void addClipPlanes(int nrClipPlanes)
Setups nrClipPlanes clip planes in the forward pass to enable OpenGL clipping.
void removeClipPlanes()
Disables OpenGL clipping.