summaryrefslogtreecommitdiffstats
path: root/src/render/framegraph/qlighting.cpp
diff options
context:
space:
mode:
authorRobert Brock <robert.brock@kdab.com>2016-03-18 16:11:58 +0000
committerSean Harmer <sean.harmer@kdab.com>2016-03-23 16:41:23 +0000
commit3e5ea8baf2475e9fadbf63db6639b8379b247eb5 (patch)
treef2910a2ea358ea6d2901c05e3c0565f0863f54fd /src/render/framegraph/qlighting.cpp
parent84baa4c9dbf422733e00fb98dd30b07fce217635 (diff)
QLighting removal
Removed QLighting and Lighting Change-Id: Idae02cc5fb736355481e35424f54de03b757f9d1 Task-number: QTBUG-51472 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/render/framegraph/qlighting.cpp')
-rw-r--r--src/render/framegraph/qlighting.cpp73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/render/framegraph/qlighting.cpp b/src/render/framegraph/qlighting.cpp
deleted file mode 100644
index 0a818f27b..000000000
--- a/src/render/framegraph/qlighting.cpp
+++ /dev/null
@@ -1,73 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** 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 The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/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 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "qlighting.h"
-#include "qlighting_p.h"
-#include <Qt3DCore/qscenepropertychange.h>
-
-QT_BEGIN_NAMESPACE
-
-namespace Qt3DRender {
-
-QLighting::QLighting(QNode *parent)
- : QFrameGraphNode(*new QLightingPrivate, parent)
-{
-}
-
-QLighting::QLighting(QLightingPrivate &dd, QNode *parent)
- : QFrameGraphNode(dd, parent)
-{
-}
-
-QLighting::~QLighting()
-{
- QNode::cleanup();
-}
-
-void QLighting::copy(const QNode *ref)
-{
- QFrameGraphNode::copy(ref);
- const QLighting *lighting = static_cast<const QLighting *>(ref);
- Q_UNUSED(lighting);
-}
-
-
-} // namespace Qt3DRender
-
-QT_END_NAMESPACE