summaryrefslogtreecommitdiffstats
path: root/tests/auto/render/triangleboundingvolume
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2015-12-03 14:49:40 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-12-10 17:44:50 +0000
commit5bab5d2f9023ecda899a2eb5b074e1e91cfb8045 (patch)
treee08d81fe1ef3a58c16714e3fd3f7be1a9c7230fc /tests/auto/render/triangleboundingvolume
parent04da7188665ce6f9550807e5cd9c52e3fa717745 (diff)
Move all raycasting code as private in Qt3DRender
Change-Id: I871cbc57166493f30ea307305d8664e2f8a8873f Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests/auto/render/triangleboundingvolume')
-rw-r--r--tests/auto/render/triangleboundingvolume/tst_triangleboundingvolume.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/render/triangleboundingvolume/tst_triangleboundingvolume.cpp b/tests/auto/render/triangleboundingvolume/tst_triangleboundingvolume.cpp
index 2a35d06c5..5d6cd7711 100644
--- a/tests/auto/render/triangleboundingvolume/tst_triangleboundingvolume.cpp
+++ b/tests/auto/render/triangleboundingvolume/tst_triangleboundingvolume.cpp
@@ -37,11 +37,11 @@
#include <QtTest/QtTest>
#include <Qt3DRender/private/entity_p.h>
#include <Qt3DRender/private/triangleboundingvolume_p.h>
-#include <Qt3DRender/qraycastingservice.h>
+#include <Qt3DRender/private/qraycastingservice_p.h>
#include <Qt3DCore/qray3d.h>
#include <Qt3DCore/qcameralens.h>
#include <Qt3DCore/qcamera.h>
-#include <Qt3DCore/qboundingvolume.h>
+#include <Qt3DRender/private/qboundingvolume_p.h>
class tst_TriangleBoundingVolume : public QObject
{
@@ -64,7 +64,7 @@ private Q_SLOTS:
QCOMPARE(volume.a(), QVector3D());
QCOMPARE(volume.b(), QVector3D());
QCOMPARE(volume.c(), QVector3D());
- QCOMPARE(volume.type(), Qt3DCore::QBoundingVolume::Triangle);
+ QCOMPARE(volume.type(), Qt3DRender::QBoundingVolume::Triangle);
}
void transformed_data()