1 /// @ref core 2 /// @file glm/detail/type_half.hpp 3 4 #pragma once 5 6 #include "setup.hpp" 7 8 namespace glm{ 9 namespace detail 10 { 11 typedef short hdata; 12 13 GLM_FUNC_DECL float toFloat32(hdata value); 14 GLM_FUNC_DECL hdata toFloat16(float const & value); 15 16 }//namespace detail 17 }//namespace glm 18 19 #include "type_half.inl" 20