2014-09-04 14:54:05 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
**
|
|
|
|
** This file is part of the Qt3D module of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-09-11 09:23:21 +00:00
|
|
|
#ifndef DEFERREDRENDERER_H
|
|
|
|
#define DEFERREDRENDERER_H
|
2014-09-04 14:54:05 +00:00
|
|
|
|
2014-09-11 09:23:21 +00:00
|
|
|
#include <Qt3DRenderer/QViewport>
|
|
|
|
#include <Qt3DRenderer/QClearBuffer>
|
|
|
|
#include <Qt3DRenderer/QLayerFilter>
|
|
|
|
#include <Qt3DRenderer/QRenderPassFilter>
|
|
|
|
#include <Qt3DRenderer/QRenderTargetSelector>
|
|
|
|
#include <Qt3DRenderer/QCameraSelector>
|
2014-10-16 13:18:48 +00:00
|
|
|
#include <Qt3DRenderer/QAnnotation>
|
2014-09-04 14:54:05 +00:00
|
|
|
|
2014-09-11 09:23:21 +00:00
|
|
|
class DeferredRenderer : public Qt3D::QViewport
|
2014-09-04 14:54:05 +00:00
|
|
|
{
|
2014-09-11 09:23:21 +00:00
|
|
|
public:
|
|
|
|
explicit DeferredRenderer(Qt3D::QNode *parent = 0);
|
2014-09-04 14:54:05 +00:00
|
|
|
|
2014-09-11 09:23:21 +00:00
|
|
|
void setSceneCamera(Qt3D::QEntity *camera);
|
|
|
|
void setGBuffer(Qt3D::QRenderTarget *gBuffer);
|
2014-10-16 13:18:48 +00:00
|
|
|
void setGeometryPassCriteria(QList<Qt3D::QAnnotation *> criteria);
|
|
|
|
void setFinalPassCriteria(QList<Qt3D::QAnnotation *> criteria);
|
2014-10-20 09:07:16 +00:00
|
|
|
void setGBufferLayers(const QStringList &layerName);
|
|
|
|
void setScreenQuadLayers(const QStringList &layerName);
|
2014-09-04 14:54:05 +00:00
|
|
|
|
2014-09-11 09:23:21 +00:00
|
|
|
private:
|
2014-09-29 15:19:36 +00:00
|
|
|
Qt3D::QLayerFilter *m_sceneFilter;
|
2015-01-16 10:27:41 +00:00
|
|
|
Qt3D::QLayerFilter *m_screenQuadFilter;
|
2014-09-29 15:19:36 +00:00
|
|
|
Qt3D::QClearBuffer *m_clearScreenQuad;
|
2014-09-11 09:23:21 +00:00
|
|
|
Qt3D::QRenderTargetSelector *m_gBufferTargetSelector;
|
2014-09-29 15:19:36 +00:00
|
|
|
Qt3D::QClearBuffer *m_clearGBuffer;
|
2014-09-11 09:23:21 +00:00
|
|
|
Qt3D::QRenderPassFilter *m_geometryPassFilter;
|
|
|
|
Qt3D::QRenderPassFilter *m_finalPassFilter;
|
|
|
|
Qt3D::QCameraSelector *m_sceneCameraSelector;
|
|
|
|
};
|
2014-09-04 14:54:05 +00:00
|
|
|
|
2014-09-11 09:23:21 +00:00
|
|
|
#endif // DEFERREDRENDERER_H
|