16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 09:09:19 +02:00
Files
maszyna/ref/glm/glm/ext/vector_uint3.hpp
2018-10-17 16:00:26 +02:00

19 lines
417 B
C++

/// @ref core
/// @file glm/ext/vector_uint3.hpp
#pragma once
#include "../detail/type_vec3.hpp"
namespace glm
{
/// @addtogroup core_vector
/// @{
/// 3 components vector of unsigned 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<3, unsigned int, defaultp> uvec3;
/// @}
}//namespace glm