1 | // Copyright (C) 2023 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QSSGRENDERHELPERS_P_H |
5 | #define QSSGRENDERHELPERS_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 purely as an |
12 | // implementation detail. 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 <QtQuick3DRuntimeRender/qtquick3druntimerenderglobal.h> |
19 | |
20 | #include <QtQuick3DUtils/private/qssgaosettings_p.h> |
21 | #include <QtQuick3DRuntimeRender/private/qssgrenderableobjects_p.h> |
22 | |
23 | QT_BEGIN_NAMESPACE |
24 | |
25 | class QSSGRhiContext; |
26 | class QSSGRenderShadowMap; |
27 | class QRhiRenderPassDescriptor; |
28 | class QSSGRenderReflectionMap; |
29 | class QSSGLayerRenderData; |
30 | struct QSSGReflectionMapEntry; |
31 | class QSSGRhiShaderPipeline; |
32 | |
33 | namespace RenderHelpers |
34 | { |
35 | |
36 | std::pair<QSSGBounds3, QSSGBounds3> calculateSortedObjectBounds(const QSSGRenderableObjectList &sortedOpaqueObjects, |
37 | const QSSGRenderableObjectList &sortedTransparentObjects); |
38 | |
39 | void rhiRenderShadowMap(QSSGRhiContext *rhiCtx, |
40 | QSSGPassKey passKey, |
41 | QSSGRhiGraphicsPipelineState &ps, |
42 | QSSGRenderShadowMap &shadowMapManager, |
43 | const QSSGRenderCamera &camera, |
44 | QSSGRenderCamera *debugCamera, |
45 | const QSSGShaderLightList &globalLights, |
46 | const QSSGRenderableObjectList &sortedOpaqueObjects, |
47 | QSSGRenderer &renderer, |
48 | const QSSGBounds3 &castingObjectsBox, |
49 | const QSSGBounds3 &receivingObjectsBox); |
50 | |
51 | void rhiRenderReflectionMap(QSSGRhiContext *rhiCtx, |
52 | QSSGPassKey passKey, |
53 | const QSSGLayerRenderData &inData, |
54 | QSSGRhiGraphicsPipelineState *ps, |
55 | QSSGRenderReflectionMap &reflectionMapManager, |
56 | const QVector<QSSGRenderReflectionProbe *> &reflectionProbes, |
57 | const QSSGRenderableObjectList &reflectionPassObjects, |
58 | QSSGRenderer &renderer); |
59 | |
60 | bool rhiPrepareDepthPass(QSSGRhiContext *rhiCtx, |
61 | QSSGPassKey passKey, |
62 | const QSSGRhiGraphicsPipelineState &basePipelineState, |
63 | QRhiRenderPassDescriptor *rpDesc, |
64 | QSSGLayerRenderData &inData, |
65 | const QSSGRenderableObjectList &sortedOpaqueObjects, |
66 | const QSSGRenderableObjectList &sortedTransparentObjects, |
67 | int samples, |
68 | int viewCount); |
69 | |
70 | void rhiRenderDepthPass(QSSGRhiContext *rhiCtx, const QSSGRhiGraphicsPipelineState &ps, |
71 | const QSSGRenderableObjectList &sortedOpaqueObjects, |
72 | const QSSGRenderableObjectList &sortedTransparentObjects, |
73 | bool *needsSetViewport); |
74 | |
75 | bool rhiPrepareAoTexture(QSSGRhiContext *rhiCtx, const QSize &size, QSSGRhiRenderableTexture *renderableTex); |
76 | |
77 | void rhiRenderAoTexture(QSSGRhiContext *rhiCtx, |
78 | QSSGPassKey passKey, |
79 | QSSGRenderer &renderer, |
80 | QSSGRhiShaderPipeline &shaderPipeline, |
81 | QSSGRhiGraphicsPipelineState &ps, |
82 | const QSSGAmbientOcclusionSettings &ao, |
83 | const QSSGRhiRenderableTexture &rhiAoTexture, |
84 | const QSSGRhiRenderableTexture &rhiDepthTexture, |
85 | const QSSGRenderCamera &camera); |
86 | |
87 | bool rhiPrepareScreenTexture(QSSGRhiContext *rhiCtx, const QSize &size, bool wantsMips, QSSGRhiRenderableTexture *renderableTex); |
88 | |
89 | void rhiPrepareGrid(QSSGRhiContext *rhiCtx, |
90 | QSSGPassKey passKey, |
91 | QSSGRenderLayer &layer, |
92 | QSSGRenderCameraList &cameras, |
93 | QSSGRenderer &renderer); |
94 | |
95 | |
96 | void rhiPrepareSkyBox(QSSGRhiContext *rhiCtx, |
97 | QSSGPassKey passKey, |
98 | QSSGRenderLayer &layer, |
99 | QSSGRenderCameraList &cameras, |
100 | QSSGRenderer &renderer); |
101 | |
102 | void rhiPrepareSkyBoxForReflectionMap(QSSGRhiContext *rhiCtx, |
103 | QSSGPassKey passKey, |
104 | QSSGRenderLayer &layer, |
105 | QSSGRenderCamera &inCamera, |
106 | QSSGRenderer &renderer, |
107 | QSSGReflectionMapEntry *entry, |
108 | QSSGRenderTextureCubeFace cubeFace); |
109 | |
110 | Q_QUICK3DRUNTIMERENDER_EXPORT void rhiPrepareRenderable(QSSGRhiContext *rhiCtx, |
111 | QSSGPassKey passKey, |
112 | const QSSGLayerRenderData &inData, |
113 | QSSGRenderableObject &inObject, |
114 | QRhiRenderPassDescriptor *renderPassDescriptor, |
115 | QSSGRhiGraphicsPipelineState *ps, |
116 | QSSGShaderFeatures featureSet, |
117 | int samples, |
118 | int viewCount, |
119 | QSSGRenderCamera *alteredCamera = nullptr, |
120 | QMatrix4x4 *alteredModelViewProjection = nullptr, |
121 | QSSGRenderTextureCubeFace cubeFace = QSSGRenderTextureCubeFaceNone, |
122 | QSSGReflectionMapEntry *entry = nullptr); |
123 | |
124 | Q_QUICK3DRUNTIMERENDER_EXPORT void rhiRenderRenderable(QSSGRhiContext *rhiCtx, |
125 | const QSSGRhiGraphicsPipelineState &state, |
126 | QSSGRenderableObject &object, |
127 | bool *needsSetViewport, |
128 | QSSGRenderTextureCubeFace cubeFace = QSSGRenderTextureCubeFaceNone); |
129 | |
130 | bool rhiPrepareDepthTexture(QSSGRhiContext *rhiCtx, const QSize &size, QSSGRhiRenderableTexture *renderableTex); |
131 | |
132 | inline QRect correctViewportCoordinates(const QRectF &layerViewport, const QRect &deviceRect) |
133 | { |
134 | const int y = deviceRect.bottom() - layerViewport.bottom() + 1; |
135 | return QRect(layerViewport.x(), y, layerViewport.width(), layerViewport.height()); |
136 | } |
137 | } |
138 | |
139 | QT_END_NAMESPACE |
140 | |
141 | |
142 | #endif // QSSGRENDERHELPERS_P_H |
143 |
Definitions
Learn Advanced QML with KDAB
Find out more