diff options
Diffstat (limited to '3rdparty/glm/source/glm/ext/vector_int2.hpp')
-rw-r--r-- | 3rdparty/glm/source/glm/ext/vector_int2.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3rdparty/glm/source/glm/ext/vector_int2.hpp b/3rdparty/glm/source/glm/ext/vector_int2.hpp new file mode 100644 index 0000000..aef803e --- /dev/null +++ b/3rdparty/glm/source/glm/ext/vector_int2.hpp @@ -0,0 +1,18 @@ +/// @ref core +/// @file glm/ext/vector_int2.hpp + +#pragma once +#include "../detail/type_vec2.hpp" + +namespace glm +{ + /// @addtogroup core_vector + /// @{ + + /// 2 components vector of signed integer numbers. + /// + /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.5 Vectors</a> + typedef vec<2, int, defaultp> ivec2; + + /// @} +}//namespace glm |