summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3dscene3d/scene3dsgnode.cpp
blob: 65fc261dc65eaabf9c4a715a74e051ff5b64c65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "scene3dsgnode_p.h"

#include <QtCore/qthread.h>

#include <scene3dlogging_p.h>

QT_BEGIN_NAMESPACE

namespace Qt3DRender {

/*!
    \class Qt3DCore::Scene3DSGNode
    \internal

    \brief The Qt3DCore::Scene3DSGNode class is a simple QSGeometryNode subclass that
    uses a Qt3DCore::Scene3DMaterial

    The Qt3DCore::Scene3DSGNode allows to render a simple rectangle textured with a
    texture using premultiplied alpha.
 */
Scene3DSGNode::Scene3DSGNode()
    : QSGGeometryNode()
    , m_geometry(QSGGeometry::defaultAttributes_TexturedPoint2D(), 4)
{
    setMaterial(&m_material);
    setOpaqueMaterial(&m_opaqueMaterial);
    setGeometry(&m_geometry);
    qCDebug(Scene3D) << Q_FUNC_INFO << QThread::currentThread();
}

Scene3DSGNode::~Scene3DSGNode()
{
    qCDebug(Scene3D) << Q_FUNC_INFO << QThread::currentThread();
    // The Scene3DSGNode is deleted by the QSGRenderThread when the SceneGraph
    // is terminated.
}

void Scene3DSGNode::setRect(const QRectF &rect, bool mirrorVertically)
{
    if (rect != m_rect) {
        m_rect = rect;
        // By default, map the item's bounding rect to normalized texture coordinates

        QRectF textureRect = QRectF(0.0f, 1.0f, 1.0f, -1.0f);
        if (mirrorVertically) {
            float tmp = textureRect.top();
            textureRect.setTop(textureRect.bottom());
            textureRect.setBottom(tmp);
        }

        QSGGeometry::updateTexturedRectGeometry(&m_geometry, m_rect, textureRect);
        markDirty(DirtyGeometry);
    }
}

void Scene3DSGNode::show()
{
    m_material.show();
    m_opaqueMaterial.show();
}

} // namespace Qt3DRender

QT_END_NAMESPACE