aboutsummaryrefslogtreecommitdiff
path: root/glm/detail/type_half.hpp
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-12-07 16:23:20 -0500
committersotech117 <michael_foiani@brown.edu>2023-12-07 16:23:20 -0500
commitcaa765bff49d54217b75aaf0e7acf4e5392a11e4 (patch)
tree9b92914dfb88b99599e8e60e4512e9e9ea9a25db /glm/detail/type_half.hpp
parenta9274459443f1d560d7580a162deb581549980cb (diff)
upload base code
Diffstat (limited to 'glm/detail/type_half.hpp')
-rw-r--r--glm/detail/type_half.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/glm/detail/type_half.hpp b/glm/detail/type_half.hpp
new file mode 100644
index 0000000..40b8bec
--- /dev/null
+++ b/glm/detail/type_half.hpp
@@ -0,0 +1,16 @@
+#pragma once
+
+#include "setup.hpp"
+
+namespace glm{
+namespace detail
+{
+ typedef short hdata;
+
+ GLM_FUNC_DECL float toFloat32(hdata value);
+ GLM_FUNC_DECL hdata toFloat16(float const& value);
+
+}//namespace detail
+}//namespace glm
+
+#include "type_half.inl"