summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-01-23 06:20:36 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-01-23 06:20:36 +0000
commit2e2ef3d97886496a87bb4136ba82eb9caad4749d (patch)
treebf9ae27ad4bea2365349dc01bf396b7757bfd26f /Tests/TestApp/src
parentFixed UWP build (diff)
downloadDiligentEngine-2e2ef3d97886496a87bb4136ba82eb9caad4749d.tar.gz
DiligentEngine-2e2ef3d97886496a87bb4136ba82eb9caad4749d.zip
Updated mathlib test
Diffstat (limited to 'Tests/TestApp/src')
-rw-r--r--Tests/TestApp/src/MathLibTest.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/TestApp/src/MathLibTest.cpp b/Tests/TestApp/src/MathLibTest.cpp
index cf2e65a..124c82e 100644
--- a/Tests/TestApp/src/MathLibTest.cpp
+++ b/Tests/TestApp/src/MathLibTest.cpp
@@ -26,6 +26,7 @@
#include "pch.h"
#include "BasicMath.h"
+#include "AdvancedMath.h"
#include "DebugUtilities.h"
#include "UnitTestBase.h"
@@ -570,6 +571,17 @@ public:
}
}
+ {
+ Plane3D plane = {};
+ std::hash<Plane3D>()(plane);
+
+ ViewFrustum frustum = {};
+ std::hash<ViewFrustum>()(frustum);
+
+ ViewFrustumExt frustm_ext = {};
+ std::hash<ViewFrustumExt>()(frustm_ext);
+ }
+
SetStatus(TestResult::Succeeded);
}
};