type_half.hpp 254 B

12345678910111213141516
  1. #pragma once
  2. #include "setup.hpp"
  3. namespace glm{
  4. namespace detail
  5. {
  6. typedef short hdata;
  7. GLM_FUNC_DECL float toFloat32(hdata value);
  8. GLM_FUNC_DECL hdata toFloat16(float const& value);
  9. }//namespace detail
  10. }//namespace glm
  11. #include "type_half.inl"