aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/glm/detail/type_half.hpp
blob: 6a71e38328e5a19a083fdbe8f5da0d57d954d083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"