| 1 | // Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #include "frustumculling_p.h" |
| 5 | #include <Qt3DRender/qfrustumculling.h> |
| 6 | |
| 7 | QT_BEGIN_NAMESPACE |
| 8 | |
| 9 | namespace Qt3DRender { |
| 10 | |
| 11 | namespace Render { |
| 12 | |
| 13 | FrustumCulling::FrustumCulling() |
| 14 | : FrameGraphNode(FrameGraphNode::FrustumCulling) |
| 15 | { |
| 16 | } |
| 17 | |
| 18 | FrustumCulling::~FrustumCulling() |
| 19 | { |
| 20 | } |
| 21 | |
| 22 | } // namespace Render |
| 23 | |
| 24 | } // namespace Qt3DRender |
| 25 | |
| 26 | QT_END_NAMESPACE |
| 27 |
