Grafika_Komputerowa_Interst.../dependencies/glm/detail/type_half.hpp

20 lines
305 B
C++
Raw Normal View History

2024-01-12 18:23:52 +01:00
/// @ref core
/// @file glm/detail/type_half.hpp
#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"