QGIS API Documentation 3.28.0-Firenze (ed3ad0430f)
qgsabstract3dengine.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsabstract3dengine.cpp
3 --------------------------------------
4 Date : July 2018
5 Copyright : (C) 2018 by Martin Dobias
6 Email : wonder dot sk at gmail 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#include "qgsabstract3dengine.h"
17
19
20#include <Qt3DRender/QRenderCapture>
21#include <Qt3DRender/QRenderSettings>
22
24 : QObject( parent )
25{
26
27}
28
30{
31 Qt3DRender::QRenderCaptureReply *captureReply;
32 captureReply = mFrameGraph->renderCapture()->requestCapture();
33 // We need to change render policy to RenderPolicy::Always, since otherwise render capture node won't work
34 this->renderSettings()->setRenderPolicy( Qt3DRender::QRenderSettings::RenderPolicy::Always );
35 connect( captureReply, &Qt3DRender::QRenderCaptureReply::completed, this, [ = ]
36 {
37 emit imageCaptured( captureReply->image() );
38 this->renderSettings()->setRenderPolicy( Qt3DRender::QRenderSettings::RenderPolicy::OnDemand );
39 captureReply->deleteLater();
40 } );
41}
42
44{
45 Qt3DRender::QRenderCaptureReply *captureReply;
46 captureReply = mFrameGraph->depthRenderCapture()->requestCapture();
47 // We need to change render policy to RenderPolicy::Always, since otherwise render capture node won't work
48 this->renderSettings()->setRenderPolicy( Qt3DRender::QRenderSettings::RenderPolicy::Always );
49 connect( captureReply, &Qt3DRender::QRenderCaptureReply::completed, this, [ = ]
50 {
51 emit depthBufferCaptured( captureReply->image() );
52 this->renderSettings()->setRenderPolicy( Qt3DRender::QRenderSettings::RenderPolicy::OnDemand );
53 captureReply->deleteLater();
54 } );
55}
56
58{
60}
61
63{
65}
void requestCaptureImage()
Starts a request for an image rendered by the engine.
void requestDepthBufferCapture()
Starts a request for an image containing the depth buffer data of the engine.
void imageCaptured(const QImage &image)
Emitted after a call to requestCaptureImage() to return the captured image.
bool renderCaptureEnabled() const
Returns whether it will be possible to render to an image.
void depthBufferCaptured(const QImage &image)
Emitted after a call to requestDepthBufferCapture() to return the captured depth buffer.
void setRenderCaptureEnabled(bool enabled)
Sets whether it will be possible to render to an image.
QgsAbstract3DEngine(QObject *parent=nullptr)
Constructor for QgsAbstract3DEngine with the specified parent object.
QgsShadowRenderingFrameGraph * mFrameGraph
virtual Qt3DRender::QRenderSettings * renderSettings()=0
Returns access to the engine's render settings (the frame graph can be accessed from here)
bool renderCaptureEnabled() const
Returns whether it will be possible to render to an image.
Qt3DRender::QRenderCapture * renderCapture()
Returns the render capture object used to take an image of the scene.
Qt3DRender::QRenderCapture * depthRenderCapture()
Returns the render capture object used to take an image of the depth buffer of the scene.
void setRenderCaptureEnabled(bool enabled)
Sets whether it will be possible to render to an image.