blob: 1e4f98c9e11467b14e3e38605c2ae2a2dfcc5ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtQuick3DRuntimeRender/private/qssgrenderjoint_p.h>
#include <QtQuick/QSGTexture>
QT_BEGIN_NAMESPACE
QSSGRenderJoint::QSSGRenderJoint()
: QSSGRenderNode(QSSGRenderGraphObject::Type::Joint)
{
}
QSSGRenderJoint::~QSSGRenderJoint() = default;
QT_END_NAMESPACE
|