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
23QT_BEGIN_NAMESPACE
24
25class QSSGRhiContext;
26class QSSGRenderShadowMap;
27class QRhiRenderPassDescriptor;
28class QSSGRenderReflectionMap;
29class QSSGLayerRenderData;
30struct QSSGReflectionMapEntry;
31class QSSGRhiShaderPipeline;
32
33namespace RenderHelpers
34{
35
36std::pair<QSSGBounds3, QSSGBounds3> calculateSortedObjectBounds(const QSSGRenderableObjectList &sortedOpaqueObjects,
37 const QSSGRenderableObjectList &sortedTransparentObjects);
38
39void 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
51void 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
60bool 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
70void rhiRenderDepthPass(QSSGRhiContext *rhiCtx, const QSSGRhiGraphicsPipelineState &ps,
71 const QSSGRenderableObjectList &sortedOpaqueObjects,
72 const QSSGRenderableObjectList &sortedTransparentObjects,
73 bool *needsSetViewport);
74
75bool rhiPrepareAoTexture(QSSGRhiContext *rhiCtx, const QSize &size, QSSGRhiRenderableTexture *renderableTex);
76
77void 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
87bool rhiPrepareScreenTexture(QSSGRhiContext *rhiCtx, const QSize &size, bool wantsMips, QSSGRhiRenderableTexture *renderableTex);
88
89void rhiPrepareGrid(QSSGRhiContext *rhiCtx,
90 QSSGPassKey passKey,
91 QSSGRenderLayer &layer,
92 QSSGRenderCameraList &cameras,
93 QSSGRenderer &renderer);
94
95
96void rhiPrepareSkyBox(QSSGRhiContext *rhiCtx,
97 QSSGPassKey passKey,
98 QSSGRenderLayer &layer,
99 QSSGRenderCameraList &cameras,
100 QSSGRenderer &renderer);
101
102void rhiPrepareSkyBoxForReflectionMap(QSSGRhiContext *rhiCtx,
103 QSSGPassKey passKey,
104 QSSGRenderLayer &layer,
105 QSSGRenderCamera &inCamera,
106 QSSGRenderer &renderer,
107 QSSGReflectionMapEntry *entry,
108 QSSGRenderTextureCubeFace cubeFace);
109
110Q_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
124Q_QUICK3DRUNTIMERENDER_EXPORT void rhiRenderRenderable(QSSGRhiContext *rhiCtx,
125 const QSSGRhiGraphicsPipelineState &state,
126 QSSGRenderableObject &object,
127 bool *needsSetViewport,
128 QSSGRenderTextureCubeFace cubeFace = QSSGRenderTextureCubeFaceNone);
129
130bool rhiPrepareDepthTexture(QSSGRhiContext *rhiCtx, const QSize &size, QSSGRhiRenderableTexture *renderableTex);
131
132inline 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
139QT_END_NAMESPACE
140
141
142#endif // QSSGRENDERHELPERS_P_H
143

Provided by KDAB

Privacy Policy
Learn Advanced QML with KDAB
Find out more

source code of qtquick3d/src/runtimerender/rendererimpl/qssgrenderhelpers_p.h