]> git.localhorst.tv Git - blobs.git/blob - src/graphics/glm.hpp
simple planet render
[blobs.git] / src / graphics / glm.hpp
1 #ifndef BLOBS_GRAPHICS_GLM_HPP_
2 #define BLOBS_GRAPHICS_GLM_HPP_
3
4 #ifndef GLM_FORCE_RADIANS
5 #  define GLM_FORCE_RADIANS 1
6 #endif
7
8 #include <glm/glm.hpp>
9
10 // GLM moved tvec[1234] from glm::detail to glm in 0.9.6
11
12 #if GLM_VERSION < 96
13
14 namespace glm {
15         using tvec1 = detail::tvec1;
16         using tvec2 = detail::tvec2;
17         using tvec3 = detail::tvec3;
18         using tvec4 = detail::tvec4;
19 }
20
21 #endif
22
23 #endif